How can I use meshgrid in a loop?
3 views (last 30 days)
Show older comments
Syed Ali Hassan
on 23 Apr 2014
Commented: Syed Ali Hassan
on 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 Comments
Accepted Answer
Azzi Abdelmalek
on 23 Apr 2014
Use cell array
P{i}=
3 Comments
Azzi Abdelmalek
on 23 Apr 2014
%function [Pn,Lightn]=init_ffa(n,range)
%your code
Pn{1}=P1n;
Pn{2}=P2n;
Pn{3}=Pn
More Answers (0)
See Also
Categories
Find more on Line Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!