Borrar filtros
Borrar filtros

Hi, How i can plot 24244x29 availabale measured data against 24244x1 available measured data? The data is in .mat file ! any suggestion ? thanks

2 visualizaciones (últimos 30 días)
Hi, How i can plot 24244x29 availabale measured data against 24244x1 available measured data? The data is in .mat file ! any suggestion ? thanks

Respuesta aceptada

Ameer Hamza
Ameer Hamza el 20 de Mayo de 2018
Editada: Ameer Hamza el 20 de Mayo de 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.

Más respuestas (0)

Categorías

Más información sobre MATLAB en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by