A répondu
Drawing a rotating circle on a sphere
The code should be self-explicative [X,Y,Z] = sphere; % figure figure, hold on axis equal, view([1 1 1]); % sphere wit...

plus de 2 ans il y a | 0

| A accepté

A répondu
Showing me wrong Matrix Size.
multiply without the 'dot' OO= N*kk;

plus de 2 ans il y a | 0

A répondu
How can you solve a system of second order differential equation, which is not time, but length and radius dependent?
This is not an ODE but a PDE. you should have a look at pdepe

plus de 2 ans il y a | 2

| A accepté

A répondu
We have a column vector and a row vector both of same lengths. How to use sum function to get element wise sum of two vectors and final answer display in row vector
vect3 = vect1.'+vect2 If you want to be sure of the element by element sum, regardles the shape of the two vectors (row or colu...

plus de 2 ans il y a | 0

| A accepté

A répondu
How to randomly change element of matrix?
You can use linear indexing % your matrix A = rand(10,100); % create the folder mkdir('storage'); % loop for i = 1:100...

plus de 2 ans il y a | 2

A répondu
How to create a series of circle by using a specific radius in cartesian?
Try something like this % anonymous function to plot a circle given the center coordinates and the % radius plotcircle = @(x,...

plus de 2 ans il y a | 0

| A accepté

A répondu
Converting Euler ODE to the MATLAB code
f is an anonymous function f = @(t,y)[-2*y(1)+y(2)+15*cos(t); 2*y(1)-y(2)]; note that your script is not correct, since t is t...

plus de 2 ans il y a | 1

| A accepté

A répondu
How to call a variable matrix from one script to another script
I am not sure I have understtod correctly your problem. I give it a try. I would add an extra layer using an anonymous function...

plus de 2 ans il y a | 1

| A accepté

A répondu
How to use ~= operator as constraint function?
You may have a look here or here

plus de 2 ans il y a | 0

A répondu
How to compare two time signals with different amount of samples?
Use interp1 to resample your vector(s) in order to have the same length clear variables, close all % time vector t1 = 0:1/1...

plus de 2 ans il y a | 1

A répondu
solve efficiently sparse large linear system of equations
I would let the backslash operator work on this matrix sol = L\f; Can you share the original matrix to make other attempts?

plus de 2 ans il y a | 0

A répondu
how to use lsqnonlin to solve conditional equation
The following code should be self explainatory. In the opposite case, simply ask clear all, close all % some dummy params va...

plus de 2 ans il y a | 0

| A accepté

A répondu
how to ascribe two values to a parameter such that it will be time dependent
You can pass an extra parameter to RiceG1 function using an anonmymous function. In your driver function add % extra anonimous ...

plus de 2 ans il y a | 1

A répondu
Can someone help me implement my Kuramoto Model with time delay please?
Your function requires additional parameters. One way to pass them is to use an anonymous function as extra layer % params N =...

plus de 2 ans il y a | 0

| A accepté

A répondu
Euler's method in matlab
Any ODE solver gives the unknown function(s) as result, not its derivative. So, yes, your results are x and y. Note that in you...

plus de 2 ans il y a | 0

| A accepté

A répondu
for loop/periodic implementation for number or arrays?
If you want to force the max and min values of your vectors, you can preprocess them x0(x0 < 1 & x0 > nx+1) = 1; If the bounda...

plus de 2 ans il y a | 1

| A accepté

A répondu
How to get this while cycle?
if B and C are matrices, make them vectors using : while any(abs(a_0-a) > 1e-6) || any(abs(B_0(:)-B(:)) > 1e-6) || any(abs(C_0(...

plus de 2 ans il y a | 1

| A accepté

A répondu
how to find out node coordinates for a simple quad element?
It depends on your data structure: now your qeustion is rather vague. Assuming that you have the node coordinates in the Nx3 ar...

plus de 2 ans il y a | 1

A répondu
Hwo to normalize a Matrix ?
Following the formula of the OT the normalization has to be done according to the max and min of each row. Note that the matrix ...

plus de 2 ans il y a | 2

| A accepté

A répondu
Solving nonlinear DE by reduction of order on matlab
There are some typos in your description of the problem. Here the correct version % your ODE - note that (y(1) and y(2) are exc...

plus de 2 ans il y a | 0

| A accepté

A répondu
creating array based in another array
Here a possible solution, where all arrays you want are in the columns of matrix a2 % number of entries in array 1 n = 5; % c...

plus de 2 ans il y a | 0

A répondu
Warning: Matrix is singular to working precision.
The matrix is singular because the first three rows are linearly dependent. For example you can obtain row 1 as I guess there...

plus de 2 ans il y a | 0

A répondu
how can i let all number in matrix X between 0~1?
If you want to scale your output in [0 1] you can use this X1 = (X-min(X))/sum(X-min(X)); in fact >> sum(X1) ans = ...

plus de 2 ans il y a | 0

| A accepté

A répondu
how to shift the plotting graph?
Not sure if it is what you want, but you can change the x-axis limits in this way: set(gca,'xLim',[5 20]) to show the portion ...

plus de 2 ans il y a | 0

Question


Real time GMRES convergence and stop callback
Dear Matlab users, I usually solve large linear problems using gmres. These simulations could last for several tens of hours. T...

plus de 2 ans il y a | 1 réponse | 0

0

réponse

A répondu
Population growth in 7 years
Below you can find the output of the following code % rate r = 0.0063; % years t = 7; % initial population a = 5e6; t =...

presque 3 ans il y a | 1

Question


Problem with Simscape variable visibility
Hi all, I have created a simulink model of a circuit using simscape electrical elements. I have also created two callbacks, Ini...

plus de 3 ans il y a | 1 réponse | 0

1

réponse

A répondu
how to find parallel of resistors
Maybe it's too late for the OP, but for the records, I usually use an anonymous function with multiple inputs % ananymous paral...

plus de 3 ans il y a | 1

A répondu
Nonlinear equation numerical solution
% params C = 1.2; D = 9420; E = -2.0; B = 0.1973; y0 =...

presque 4 ans il y a | 0

A répondu
Plotting a taylor series function of x^(1/3) centred at x=1728
One option is to use the built-in taylor function in symbolic math toolbox. If you want to use your strategy, there are some is...

presque 4 ans il y a | 0

| A accepté

Charger plus