What is the solution?
2 views (last 30 days)
Show older comments
Plot columns 2 and 3 of the following matrix A versus column 1. The data in column 1 are time (seconds). The data in columns 2 and 3 are force (newtons). A = £ 0 -7 6 5 -4 3 10 -1 9 15 1 0 20 2 -1
1 Comment
Steven Lord
on 29 Nov 2017
If you show us what you've done to try to solve this problem (which sounds like a homework assignment) we may be able to offer some suggestions to help you.
P.S. Please use a more descriptive title for your questions in the future.
Answers (1)
Sammit Jain
on 29 Nov 2017
Hi, I agree with Steven that you should probably show us your attempt at the problem and tell us where exactly are you encountering a problem.
To get you started, try something like:
A = [1 2 3; 4 5 6; 7 8 9];
plot(A(:,1),A(:,2));
Here, before you type in this code, just check what A(:,1) gives. This should give you an idea of how MATLAB handles indices. Once you figure this out, the rest should be obvious. All the best.
Cheers.
0 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!