How can I use meshgrid in a loop?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Syed Ali Hassan
il 23 Apr 2014
Commentato: Syed Ali Hassan
il 23 Apr 2014
P1=meshgrid(range(1):dP(1):range(2));
P2=meshgrid(range(3):dP(2):range(4));
P3=meshgrid(range(5):dP(3):range(6));
I want like that
tempn=2;
for i = 1:3
P(i)=meshgrid(range(tempn-1):dP(i):range(tempn));
tempn=tempn+2;
end
0 Commenti
Risposta accettata
Azzi Abdelmalek
il 23 Apr 2014
Use cell array
P{i}=
3 Commenti
Azzi Abdelmalek
il 23 Apr 2014
%function [Pn,Lightn]=init_ffa(n,range)
%your code
Pn{1}=P1n;
Pn{2}=P2n;
Pn{3}=Pn
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Line 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!