plots.m, plotses.m
Example:
x = [-10:0.1:10]';
Y = [x x.^2 x.^3 cos(x)];
location = 'top';
labels = ['x-axis '
'y=x '
'y=x^2 '
'y=x^3 '
'y=cos(x)'];
[hlines,haxes]=plots(x,Y,location,labels);
Plots the columns of the matrix Y versus the vector column x, using different axes at the top of the figure, with the specified axes-labels.
The location of the axes can be 'left' (default), 'right', 'top' or 'bottom'.
PLOTSES.M its the almost the same but with the axes moved from the fixed axis (useful?).
Both M-files come with the colored example of the screenshot.
Citar como
Carlos Adrian Vargas Aguilera (2024). plots.m, plotses.m (https://www.mathworks.com/matlabcentral/fileexchange/10242-plots-m-plotses-m), MATLAB Central File Exchange. Recuperado .
Compatibilidad con la versión de MATLAB
Compatibilidad con las plataformas
Windows macOS LinuxCategorías
- MATLAB > Graphics > 2-D and 3-D Plots > Line Plots > Two y-axis >
Etiquetas
Agradecimientos
Inspirado por: plotyyy
Inspiración para: addaxes.m v1.1 (Sep 2009), ecopath_matlab: A Matlab implementation of Ecopath, xunits, yunits and zunits.m (Jul 2014)
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Descubra Live Editor
Cree scripts con código, salida y texto formateado en un documento ejecutable.
Versión | Publicado | Notas de la versión | |
---|---|---|---|
1.0.0.0 | English translation from spanish. Little changes on the submit and screenshot.
|