Hi, How i can plot 24244x29 availabale measured data against 24244x1 available measured data? The data is in .mat file ! any suggestion ? thanks
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Husnain Ahmed
le 20 Mai 2018
Commenté : Ameer Hamza
le 20 Mai 2018
Hi, How i can plot 24244x29 availabale measured data against 24244x1 available measured data? The data is in .mat file ! any suggestion ? thanks
0 commentaires
Réponse acceptée
Ameer Hamza
le 20 Mai 2018
Modifié(e) : Ameer Hamza
le 20 Mai 2018
load the data from file using
data = load('filename');
and the plot using plot() function
plot(data.x, data.y);
here x is the name of 24244x1 variable and y is the name of 24244x29 variable. This command will give you 29 lines on one axes.
2 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur 2-D and 3-D 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!