plotting 2 .mat fikes ith the same variable name
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Chantal Lewis
el 6 de Nov. de 2019
Respondida: Katie
el 6 de Nov. de 2019
hello,
how do i plot data from 2 different .mat files whihc contain data using the sam variable names without overwriting the data
0 comentarios
Respuesta aceptada
Katie
el 6 de Nov. de 2019
When you load the .mat files you can store the contents in two different variables and then dot index your variables:
Data=load('file1.mat');
Data1=load('file2.mat');
figure;
plot(Data.x, Data.y);
hold on;
plot(Data1.x, Data1.y);
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Annotations en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!