I have matrix A =[nx1] & B = [nx1] I want to combine them into C = [ nx2]
8 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Rashid Hussein
le 3 Nov 2017
Modifié(e) : Rashid Hussein
le 4 Nov 2017
I tried to do plot ( A,B) But it showed me 2 lines in one plot
Because I wanted to make A as x-axis & B as y axis in plot
0 commentaires
Réponse acceptée
Guillaume
le 3 Nov 2017
The title of your question has nothing to do with the body of your question.
To answer your title:
C = [A, B];
To answer the body:
plot(A, B)
is indeed the correct syntax to plot B as y values and A as x values. If you get 2 lines in the legend, that would be because B has twice the numbers of rows or columns of A. If A and B are indeed both nx1, you cannot get two lines.
5 commentaires
Voir également
Catégories
En savoir plus sur Discrete Data Plots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!