Risposto
How can I store the output value from each for loop?
Hi The file = files' statement is quite crucial, but should be correct like this. The foor loop (by default) will loop throug...

circa 8 anni fa | 0

| accettato

Risposto
Plot with loop work only for the last
The matlab documentation is really good for that: <http://www.mathworks.com/help/matlab/ref/plot.html?searchHighlight=plot Pl...

circa 8 anni fa | 0

Risposto
How can I adjust a controller?
Hi Your basic procedure is correct, but you mixed up the parameters a bit. I admit that this is a bit confusing, but the str...

circa 8 anni fa | 0

| accettato

Risposto
How to assemble time series by smaller time series (or windows)
Could you specificy what you want in the end? A timeseries object? A separate data matrix for each case? If you want to conca...

circa 8 anni fa | 0

Risposto
Getting Real & Imaginary Numbers From Nyquist(Sys)
Hi The values in RE and IM are, as you correctly assume, the real and imaginary values (of the vector w, which would be the 3...

circa 8 anni fa | 0

Risposto
Finding inverse cross-correlation
If I interpret your description of "inverse cross-correlation" correctly, wouldn't that just be the cross-correlation with one o...

circa 8 anni fa | 0

Risposto
Error using sub2ind out of range subscript
Your code runs without error for me. Why do you have the variables declared as global? This is something to avoid whenever po...

circa 8 anni fa | 0

Risposto
how to replace consecutive 4 elements of an array with the largest element among every 4 consecutive element ?
One possibility would be the following: 1. reshape your vector as a 4xN matrix a=[12 58 16 56 23 7 8 45 53 56 12 32 ...

circa 8 anni fa | 1

Risposto
y(t)= a*t*exp(-a*t); z=summation(A(i)*y(t-T(i)).summation from i=1 to J. i need to partially differentiate z wrt A() and T()
And you want to do this symbolically? Looks to me that this would be a possibility: 1. create a variable for each summation i...

circa 8 anni fa | 0

Risposto
How to extract only alphabets from mixed string
Hi You can use fancy functions like regexp or so, but this is my suggestion: str = 'BA9K90L'; % pick out letters ...

circa 8 anni fa | 0

Risposto
Bessel function of the first kind
Hi interesting question, thanks. The short answer is: there is (almost) nothing wrong with the code, except the *abs*, wh...

circa 8 anni fa | 1

Risposto
what's the difference between writing 1.0 and 1. or 2.0 and 2. ?
There is not difference in matlab. Sometimes, people like to write "1." instead of 1 to make it easier to port to/from other pro...

circa 8 anni fa | 0

Risposto
function on separate interval
This means that you have defined a function with an output (in your case the variable f), but have not assigned it. This would h...

circa 8 anni fa | 0

| accettato

Risposto
I need help plotting a range of stream lines in my velocity field plot.
Hi Nice plotting! I believe *contour* might help, something like %stream function psi = y.^2 - x.^2 - x -0.25; con...

circa 8 anni fa | 2

| accettato

Risposto
Check two string data without carriage return symbol
Why not just take the first row? I.e. Psvoltage = deblank(fscanf(obj1)) %, '%d', 4) if ( ~isempty(Psvoltage) ) ...

circa 8 anni fa | 0

| accettato

Risposto
non linear equation, help me solve this please
Hi 1. What does the error say? _"The expression to the left of the equals sign is not a valid target for an assignment."_ ...

circa 8 anni fa | 0

Risposto
My code uses the Euler scheme to solve an equation.How would I convert it to Runge Kutta scheme to make it faster for convergence.
Hi Not sure if I understand the question correctly, but you basically already have the answer, and most of the code you need....

circa 8 anni fa | 1

Risposto
How to access variables with incremental names using for loop index?
You could use "eval", i.e. for i = 1:3 eval(sprintf('limb_ph%i_avg=mean(limb_ph%i)',i,i)); end but eval should be ...

circa 8 anni fa | 0

Risposto
How can I add a value to my array?
To answer your question, you *could* just concatenate them, e.g. x = [ 2 3 ]; % now add a 1: x = [ 1 x ]; ...

circa 8 anni fa | 0

Risposto
Only one Figure in plot
You can specify which figure you want to plot in bringing up the figure before (either through it's number or the figure handle)...

circa 8 anni fa | 0

Risposto
Generating random ones and zeros controllably
You can generate a vector ( or matrix if you like ) with the desired number of zeros and ones, and then permute them randomly us...

circa 8 anni fa | 1

| accettato

Risposto
The command svmtrain in LIBSVM matlab package takes input for values of C and g in quotes as a string value. I want to use the single code svmtrain repetitively by having different values for C and g. But how to do it?
What you essentially need to do is concatenate strings (and convert the number into a string). Let's say you want to test the ve...

circa 8 anni fa | 1

| accettato

Risposto
Integration of fft data
Two possibilities: a) First use inverse fft to get acceleration, then integrate. b) Use integration property of Fourier Tr...

circa 8 anni fa | 0

Risposto
How to read a data file line by line running a loop?
I don't think you should read it line by line. Just read the whole thing, and _process_ it line by line. 1300 rows are peanuts, ...

circa 8 anni fa | 0

Risposto
how to exclude above and below of average of min and max peaks?
You can select certain parts of a vector using logical indices. Example: Remove everything > 2 a = [ 1 2 3 4 5 ]; in...

circa 8 anni fa | 0

Risposto
how to declare parameter data type in a function?
Hi Short answer: cast with e.g. int8 Longer answer: As you probably know, Matlab is quite relaxed when it comes to data...

circa 8 anni fa | 0

Risposto
How to make a plane rotating with roll, pitch and yaw?
Hi you can use hgtransform objects. _Andrew Gibiansky_ has a simple quadrotor simulator which uses them, you could have a loo...

circa 8 anni fa | 0

Risposto
merging files using for loop
The above method should work. However, instead of copying the content into a string ( which might be HUGE for several files ...

circa 8 anni fa | 0

| accettato

Risposto
Adjacency matrix of a network to Distance matrix (Two -Hop)
Possible solution, see comment section for details: A = [ 0 1 1 0 0 0 0 0 1 0 1 0 0 0 0 0 1 1 0 1 0 0 ...

circa 8 anni fa | 0

| accettato

Risposto
Finding the Transfer Function of resonance system
There are several ways of doing this, but I'm guessing you would like to actually build the circuit and get the transfer functio...

circa 8 anni fa | 1

Carica altro