plotting all indices in a for loop
1 view (last 30 days)
Show older comments
shobhit mehrotra
on 4 Sep 2014
Answered: Star Strider
on 4 Sep 2014
i have this code
for n=1:35
A = sin(n*3)
B= cos(n^2)*3))
plot (A,B)
end
however when i plot it only plots the last point, how can i plot all of the points in the array?
0 Comments
Accepted Answer
Star Strider
on 4 Sep 2014
This should work:
for n=1:35
A(n) = sin(n*3)
B(n) = cos(n^2)*3))
plot (A,B)
end
0 Comments
More Answers (0)
See Also
Categories
Find more on Scatter Plots in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!