Hallo Funktion Griff mit würde Ich mag die folgende in MatlabFigur Druck in Matlab
Es sei zu tun habe ich eine Funktion, die etwas Plots
function # call 1
function # call 2
function # call 3
function # call 4
Bedenken Sie, dass alle oben genannten Funktionen eine Figur plot in Matlab-Fenster. Wie kann ich schreibe die Funktionen, so dass es die Figur irgendwo speichern und dann kann ich so etwas wie diese verwenden -
subplot(2,2,1), # plot for call 1
subplot(2,2,2), # plot for call 2
subplot(2,2,3), # plot for call 3
subplot(2,2,4), # plot for call 4
Ich will nicht die einzelnen Figuren im Speicher speichern und die es wieder laden.
Eine sehr einfache Funktion ist wie folgt:
x = linspace(0,2*pi,100);
y = sin(x);
xmarkers = 0:pi/2:2*pi; % place markers at these x-values
ymarkers = sin(xmarkers);
figure
plot(x,y,'b',xmarkers,ymarkers,'b*')
Wenn ich dies mehrmals aufrufen wird es mehrere Figuren erzeugen, möchte ich es in ein subplot Format bringen.
Können Sie die Funktionen anzeigen? –
Ist es jetzt klar. Bitte sag es mir. Ansonsten werde ich es weiter erklären. – roni
Sie können auch die Dokumentation lesen. Es ist alles in Ordnung, http://se.mathworks.com/help/matlab/ref/figure.html http://se.mathworks.com/help/matlab/ref/plot.html – patrik