Hello. Just start to learning this program. I have .mat file with many colons and i want to make a plot only from two of them, how can i make it ?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Penelopa
el 16 de Abr. de 2024
Respondida: Voss
el 16 de Abr. de 2024
Data = load('MERITEV_CAS.mat');
x=Data(:,6);
y=Data(:,8);
plot(x,y)
0 comentarios
Respuesta aceptada
Voss
el 16 de Abr. de 2024
This is presuming that the variable in your mat file is called "Data"; if it's called something else, replace "Data" in the code with that name.
S = load('MERITEV_CAS.mat');
x=S.Data(:,6);
y=S.Data(:,8);
plot(x,y)
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical 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!