Create plot with orthonormal axis
44 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Philippe
el 2 de Mayo de 2014
Respondida: Hugo
el 7 de Mayo de 2014
I would like to plot a Nyquist impedance spectra in orthonormal axis. I can't find the command that would allow me to do so automatically. I would also like that the graph keeps beeing in orthonormal axis even if I resize by hand the window in which it is plot, for fitting with my output figure (e.g. for a file dedicated to a journal publication) Could you help me ? Thanks
0 comentarios
Respuesta aceptada
Hugo
el 7 de Mayo de 2014
Maybe you can solve this by setting the axes property 'DataAspectRatio' to a specific value. For example:
set(gca,'DataAspectRatio',[1,1,1])
Here, gca is the handle of the current axes, and the vector [1,1,1] indicates that you want all axes to have the same scale in the screen. You can resize the window manually but it will always retain the same relation between the axes.
Hope this helps.
0 comentarios
Más respuestas (1)
Azzi Abdelmalek
el 2 de Mayo de 2014
Editada: Azzi Abdelmalek
el 2 de Mayo de 2014
Use nyquist function
Ver también
Categorías
Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!