naming the figure in loop
Ältere Kommentare anzeigen
i had written a code for 100 points and to have a leasr square fit i had too first 5 points and jiust slided it till the end now for that i lave lmited the loop till 95 and plotted a least cureve fit now i have to plot the last 5 points in a single plot how should i do that and also i have done a looping of first 5,7,9 points so i amgetting 3 graph now i have to name the 3 figures how can i do that
5 Kommentare
Jan
am 21 Mai 2022
Please split your text to different sentences divided by full stops. It is not getting clear, what you are asking for currently.
sanket neharkar
am 23 Mai 2022
Image Analyst
am 23 Mai 2022
Did you even see my Answer below?
sanket neharkar
am 23 Mai 2022
Jan
am 23 Mai 2022
@sanket neharkar: Please format your code uing the tools above the section for editing. Make your question as readable as possible.
Starting a function with clear all; is a waste of time only. This clears all variables of the local workspace, but there are non at the first line of a function. In addition it removes all loaded functions from the memory. Reloading them from the slow disk wastes time only. Therefore "clear all" is "cargo cult programming" and an anti-pattern.
Do not use "error" as a name of a variable, becuase this is an important Matlab function, which cannot be called anymore afterwards.
You want to draw all graphs to the same figure. Then do not create 3 figures by:
fig(i) = figure('name', sprintf('%d', i),'NumberTitle','off');
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Smoothing and Denoising finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!