已回答
Looping for storing differet matrix in different rows but in same matrix.
Before the loop, initiate Calculated_Data=zeros(numel(alpha_data),numel(alpha_data{1,1})); k=0; within the loop, use k=k+1; ...

5 years 前 | 1

| 已接受

已回答
Adding k discrete functions together in a "for" loop
If you do not need the "wave" contents for a further use, just drop out (k) from all its entries. If you need it for a further ...

5 years 前 | 0

| 已接受

已回答
Calculate n and p values for binomial distribution in Matlab
The question has nothing to do with Matlab. Just recall, that in the binomial distribution =n*p and =n*p*(1-p).

5 years 前 | 0

已回答
Differentiating algebraic equation fractions
syms x; simplify(diff(@(x)((-x^2-x)/(x+2)*(x+3)),x))

5 years 前 | 1

| 已接受

已回答
Optimization on for loop and if statement
firstPlace = find ( telArray(i,1) == sortedArray(:,3) ,1 ) replaces your entire "k" loop.

5 years 前 | 0

已回答
How to check whether any two elements are equal or not in a Nx1 array in matlab?
%% z=randi(5,10,1); % forms a sample array; replace it with an array of your interest %% [~,indx]=sort(z); k0=1; while ...

5 years 前 | 1

已回答
Fitting Multiple Data sets
The package "Optimizer" can help. See: https://sourceforge.net/projects/optimizer-sovkov/

5 years 前 | 0

已回答
How to find the row numbers of similar elements
I think that the code in the attachment can help.

5 years 前 | 0

已回答
Using existing arrays in workspace
A variable stored in the Matlab workspace is accessible from any Matlab script via just addressing its name. If you want it to b...

5 years 前 | 0

已回答
interp1 fails to interpolate correctly
Why do you consider it is wrong? In the plot (see the attachment) this result looks quite reasonable.

5 years 前 | 0

已回答
Are there any other ways(function) of finding jacobian matrix numerically beside the function numjac
The function you describe is no more than the squared norm of the vector x, i.e. it is a scalar function of a vector argument. ...

5 years 前 | 0

| 已接受

提问


Fourier transform: unnecessary data transfer in FFT
Greetings! The FFT function in Matlab is said to be adopted from the FFTW project written in C and to possesses the same perfor...

5 years 前 | 0 个回答 | 0

0

个回答

提问


Why I cannot access Intel Fortran 2013 from Matlab 2014a to create mex files?
Greetings! My laptop computer works under Windows 8.1 64 bit. I have installed Matlab 2014a (64 bit), MS Visual C++ 2013, a...

11 years 前 | 0 个回答 | 0

0

个回答