naming the figure in loop
Mostrar comentarios más antiguos
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 comentarios
Jan
el 21 de Mayo de 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
el 23 de Mayo de 2022
Image Analyst
el 23 de Mayo de 2022
Did you even see my Answer below?
sanket neharkar
el 23 de Mayo de 2022
Jan
el 23 de Mayo de 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');
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Smoothing and Denoising en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!