write the following program using matlab
2 views (last 30 days)
Show older comments
Answers (1)
amin
on 30 Nov 2020
Hi Vivek,
Odd positions are integers from 1 to 50 and they go to the first column of A.
The even positions are the third power of the previous position and they go to the second column of A.
A(:,1)=1:50;
A(:,2)=A(:,1).^3;
plot(A(:,1),A(:,2))
legend('Second column against first column')
See Also
Categories
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!