Beantwortet
How to pick specific points and mark them on a plot?
Hi Marian Add this snippet: hold on; plot(i,temp(i),'*')

fast 13 Jahre vor | 0

Beantwortet
Numerate lines to a text file
Hi George A more rudimentary C like approach is as follows: [rows cols] = size(A); formatSpecRowNum = ...

fast 13 Jahre vor | 0

Beantwortet
where can I find the table gives information about icons for different variables in the help file?
Hi Joy # Type |workspace| in your command window and you should be able to see the Workspace window. # Type |whos| in your ...

fast 13 Jahre vor | 0

Beantwortet
Centerline Detection in an Image
<</matlabcentral/answers/uploaded_files/664/compare.jpg>> With your idea, this should get you started: h = imr...

fast 13 Jahre vor | 0

| akzeptiert

Beantwortet
is simplification of ilaplace possible?
Here the expression is already simplified i.e., it is in the final form of sines and cosines. Since you want to change the fract...

fast 13 Jahre vor | 1

| akzeptiert

Beantwortet
Help with nested for and if loops
Changing the following line from if climatology(:,:,j)==dryS(k) to if nnz(climatology(:,:,j)==dryS(k)) > 0 shou...

fast 13 Jahre vor | 0

Beantwortet
Automatically normalize a range of data into specific values.
Yes, it is possible using |hist| for finding the low, medium and high ranges. I have used your code as a function to calculate t...

fast 13 Jahre vor | 1

| akzeptiert

Beantwortet
Plotting a Piecewise function
This might be a starting place for a running code. function graph N=1000; n=(56-1)/N; x=[1:n:56]; ...

fast 13 Jahre vor | 0