Matlab
Fermé
pseudo_matlab
Messages postés
2
Date d'inscription
mercredi 19 mars 2014
Statut
Membre
Dernière intervention
1 avril 2014
-
19 mars 2014 à 12:06
Ponps123 Messages postés 16 Date d'inscription lundi 17 mars 2014 Statut Membre Dernière intervention 21 mars 2014 - 19 mars 2014 à 13:02
Ponps123 Messages postés 16 Date d'inscription lundi 17 mars 2014 Statut Membre Dernière intervention 21 mars 2014 - 19 mars 2014 à 13:02
1 réponse
Ponps123
Messages postés
16
Date d'inscription
lundi 17 mars 2014
Statut
Membre
Dernière intervention
21 mars 2014
10
19 mars 2014 à 13:02
19 mars 2014 à 13:02
Bonjour,
Alors pour faire simple, la fonction plot va prendre en x les points de t et en y ceux de X_svg.
Donc déjà ton X_svg à 3 dimensions donc Matlab essaiera de tracer 3 courbes...
Ensuite X_svg a 10 coordonnées y pour t qui en a 301. Il y a donc un problème de taille.
A quoi correspond ton X_svg ? 3 courbes ?
PS: Voici ce que help plot te donne...
If one of X or Y is a vector and the other is a matrix, then the matrix must have dimensions such that one of its dimensions equals the vector length. If the number of matrix rows equals the vector length, then MATLAB plots each matrix column versus the vector. If the number of matrix columns equals the vector length, then MATLAB plots each matrix row versus the vector. If the matrix is square, then MATLAB plots each column versus the vector.
Alors pour faire simple, la fonction plot va prendre en x les points de t et en y ceux de X_svg.
Donc déjà ton X_svg à 3 dimensions donc Matlab essaiera de tracer 3 courbes...
Ensuite X_svg a 10 coordonnées y pour t qui en a 301. Il y a donc un problème de taille.
A quoi correspond ton X_svg ? 3 courbes ?
PS: Voici ce que help plot te donne...
If one of X or Y is a vector and the other is a matrix, then the matrix must have dimensions such that one of its dimensions equals the vector length. If the number of matrix rows equals the vector length, then MATLAB plots each matrix column versus the vector. If the number of matrix columns equals the vector length, then MATLAB plots each matrix row versus the vector. If the matrix is square, then MATLAB plots each column versus the vector.