Plotting different angles.
17 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
trying to plot these four different views of c130 plane into one image. I need the top, side, front, and original(isometric) to all be displayed at once when i run the program. Attatched is my code and also the four differet views i have captured. Please help, not sure what to add into my code to obtain this.
0 Commenti
Risposta accettata
darova
il 10 Apr 2020
Use copyobj and view
Simple example
subplot(211)
x = 0:10;
y = sin(x);
h = plot(x,y);
subplot(212)
h1 = copyobj(h,gca);
ylim([-2 2])
Example for your code
figure
subplot(221)
copyobj(h,gca)
view(2)
subplot(222)
copyobj(h,gca)
view(3)
subplot(223)
copyobj(h,gca)
view(0,90)
subplot(224)
copyobj(h,gca)
view(0,0)
3 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Lighting, Transparency, and Shading in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!