Effacer les filtres
Effacer les filtres

What is the solution?

1 vue (au cours des 30 derniers jours)
sade chandler
sade chandler le 29 Nov 2017
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 commentaire
Steven Lord
Steven Lord le 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.

Connectez-vous pour commenter.

Réponses (1)

Sammit Jain
Sammit Jain le 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.

Catégories

En savoir plus sur Graphics Objects dans Help Center et File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by