plot .mat file

5 visualizaciones (últimos 30 días)
SARAH LONER
SARAH LONER el 14 de Feb. de 2020
Comentada: Guillaume el 14 de Feb. de 2020
i have value in .mat file and i need to select data as user manual as
[f p]=uigetfile('*.mat*')
a=strcat(p,f)
from this i need to plot graph based on the mat file
can any1 help?
check out my .mat file
  1 comentario
Guillaume
Guillaume el 14 de Feb. de 2020
Your mat file contains a single variable (c1) which is 6x3.
It's unclear what should be plotted against what with this matrix.
---
Completely unrelated, but you should prefer fullfile to strcat to build paths. Also, it's recommend to separate output variable by a , instead of just a space (matlab editor will warn you about it), so:
[f, p] = uigetfile('*.mat'); %use , to separate f and p
a = fullfile(p, f); %use fullfile which automatically adds the correct path separator for your OS
I would also recommend using much more meaningful variable names:
[basename, path] = uigetfile('*.mat');
fullname = fullfile(path, basename);
it makes the code a lot easier to understand.

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre Workspace Variables and MAT-Files en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by