shuftting graph plot matlab
6 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Rashid Hussein
il 11 Apr 2019
Commentato: Adam Danz
il 11 Apr 2019
theta= inv(A)* S;
th=vec2mat(theta,19);
figure
mesh( th);
1 Commento
Adam Danz
il 11 Apr 2019
The original question asked how to shift the x and y coordinates of a mesh plot produced by mesh(z).
Risposta accettata
Adam Danz
il 11 Apr 2019
mesh(Z) by itself uses the row and column index values of Z as the x and y coordinates. Your matrix is [9x19] so the x values are 1:9 and the y values are 1:19.
If you'd like to start at x=-4 and y=-9, you'll need to produce your own X and Y values using meshgrid().
[Xval, Yval] = meshgrid((1:size(th,2))-10, (1:size(th,1))-5); %shift x and y so they start at -4 and -9
figure
mesh(Xval, Yval, th);

Più risposte (0)
Vedere anche
Categorie
Scopri di più su Surface and Mesh Plots in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!