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

12年以上 前 | 0

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

12年以上 前 | 0

回答済み
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 ...

12年以上 前 | 0

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

12年以上 前 | 0

| 採用済み

回答済み
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...

12年以上 前 | 1

| 採用済み

回答済み
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...

12年以上 前 | 0

回答済み
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...

12年以上 前 | 1

| 採用済み

回答済み
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]; ...

12年以上 前 | 0