N-D grid from excel columns-2-D grid
1 view (last 30 days)
Show older comments
Hello everyone I have a file excel with two columns x,y and 2110 rows.
I plot all the couples xi,yi on a graph and now I would like to make a 2-D grid.
If then I have N columns how can I extend it to an N-grid
Can someone help me
0 Comments
Accepted Answer
Sara
on 6 Jun 2014
First, read the whole file:
A = xlsread('myfile.xlsx','A1:N2110'); % replace N2110 with the last point in your file
If all the column from 2 to N are function of the first column and you want them on the same plot:
figure
hold on
for i = 2:size(A,2)
plot(A(:,1),A(:,i))
end
or on separate plots:
for i = 2:size(A,2)
figure
plot(A(:,1),A(:,i))
end
0 Comments
More Answers (0)
See Also
Categories
Find more on Annotations 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!