Respondida
How can I calculate the sum of the absolute error?
Please check the code below. clear all, close all % model F = @(c,x)c(1)+c(2)*x+c(3)*(x.^2-1); % data xk = [-2 -1 0 1 ...

más de 4 años hace | 1

| aceptada

Respondida
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...

más de 4 años hace | 0

| aceptada

Respondida
Showing me wrong Matrix Size.
multiply without the 'dot' OO= N*kk;

más de 4 años hace | 0

Respondida
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

más de 4 años hace | 2

| aceptada

Respondida
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...

más de 4 años hace | 0

| aceptada

Respondida
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...

más de 4 años hace | 2

Respondida
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,...

más de 4 años hace | 0

| aceptada

Respondida
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...

más de 4 años hace | 1

| aceptada

Respondida
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...

más de 4 años hace | 1

| aceptada

Respondida
How to use ~= operator as constraint function?
You may have a look here or here

más de 4 años hace | 0

Respondida
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...

más de 4 años hace | 1

Respondida
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?

más de 4 años hace | 0

Respondida
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...

más de 4 años hace | 0

| aceptada

Respondida
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 ...

más de 4 años hace | 1

Respondida
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 =...

más de 4 años hace | 0

| aceptada

Respondida
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...

más de 4 años hace | 0

| aceptada

Respondida
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...

más de 4 años hace | 1

| aceptada

Respondida
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(...

más de 4 años hace | 1

| aceptada

Respondida
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...

más de 4 años hace | 1

Respondida
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 ...

más de 4 años hace | 2

| aceptada

Respondida
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...

más de 4 años hace | 0

| aceptada

Respondida
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...

más de 4 años hace | 0

Respondida
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...

más de 4 años hace | 0

Respondida
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 = ...

más de 4 años hace | 0

| aceptada

Respondida
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 ...

más de 4 años hace | 0

Pregunta


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...

más de 4 años hace | 0 respuestas | 0

0

respuestas

Respondida
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 =...

más de 4 años hace | 1

Pregunta


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...

alrededor de 5 años hace | 1 respuesta | 0

1

respuesta

Respondida
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...

alrededor de 5 años hace | 2

Respondida
Nonlinear equation numerical solution
% params C = 1.2; D = 9420; E = -2.0; B = 0.1973; y0 =...

más de 5 años hace | 0

Cargar más