Statistics
RANK
159
of 257.868
REPUTATION
613
CONTRIBUTIONS
12 Questions
225 Answers
ANSWER ACCEPTANCE
75.0%
VOTES RECEIVED
83
RANK
8.211 of 17.768
REPUTATION
85
AVERAGE RATING
4.80
CONTRIBUTIONS
1 File
DOWNLOADS
6
ALL TIME DOWNLOADS
619
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
Ax = 0 with 2 values of x known
The post is old but the question arises many times, so I post here my solution. It is a generalization of @Matt J solution. Sup...
4 dagen ago | 0
Looking for visualization method to present finite difference numerical solution in 2D
You may use the low-level patch function. Since I don't have your data, please find below a self-consistent example showing the ...
2 maanden ago | 0
smooth step function with rise time
My colleague Sofia have found a paper [1] where authors report the analytic approximation of the piece-wise linear step function...
7 maanden ago | 1
| accepted
Question
smooth step function with rise time
Hi everyone, I know this question is more related to math than Matlab, but I know there are many gurus out there who can easily...
7 maanden ago | 3 answers | 1
3
answersHow 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 ...
8 maanden ago | 1
| accepted
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...
8 maanden ago | 0
| accepted
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
8 maanden ago | 2
| accepted
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...
8 maanden ago | 0
| accepted
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...
8 maanden ago | 2
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,...
8 maanden ago | 0
| accepted
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...
8 maanden ago | 1
| accepted
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...
9 maanden ago | 1
| accepted
How to use ~= operator as constraint function?
You may have a look here or here
9 maanden ago | 0
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...
9 maanden ago | 1
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?
9 maanden ago | 0
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...
9 maanden ago | 0
| accepted
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 ...
9 maanden ago | 1
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 =...
9 maanden ago | 0
| accepted
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...
9 maanden ago | 0
| accepted
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...
9 maanden ago | 1
| accepted
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(...
9 maanden ago | 1
| accepted
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...
9 maanden ago | 1
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 ...
9 maanden ago | 2
| accepted
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...
9 maanden ago | 0
| accepted
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...
9 maanden ago | 0
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...
9 maanden ago | 0
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 = ...
9 maanden ago | 0
| accepted
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 ...
9 maanden ago | 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...
9 maanden ago | 0 answers | 0