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

plus de 12 ans il y a | 0

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

plus de 12 ans il y a | 0

Réponse apportée
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 ...

plus de 12 ans il y a | 0

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

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
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...

plus de 12 ans il y a | 1

| A accepté

Réponse apportée
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...

plus de 12 ans il y a | 0

Réponse apportée
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...

plus de 12 ans il y a | 1

| A accepté

Réponse apportée
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]; ...

plus de 12 ans il y a | 0