Borrar filtros
Borrar filtros

How can I see Matlab code (.mat) when we have .m?

13 visualizaciones (últimos 30 días)
Trung Hieu Le
Trung Hieu Le el 12 de Jun. de 2016
Editada: Trung Hieu Le el 12 de Jun. de 2016
Hi Everyone!
Regards Matlab's data, I found two function file ".m". I wonder that can I see Matlab code (.mat) from two these files for running?
I already tried but it did not work.
Thanks in advance for your help.

Respuestas (2)

Azzi Abdelmalek
Azzi Abdelmalek el 12 de Jun. de 2016
Editada: Azzi Abdelmalek el 12 de Jun. de 2016
.mat file doesn't contain a code, it contains data, if you want to see those data, type
data=load('YourFile.mat')
%or
data=load('YourFile')
%or
load YourFile
  1 comentario
Trung Hieu Le
Trung Hieu Le el 12 de Jun. de 2016
Editada: Trung Hieu Le el 12 de Jun. de 2016
Could you make a sample "adata" which these files can use? Which format of adata should it be in this code? Because I'm trying with double array, table but it is always faced with errors: Undefined operator '==' for input arguments of type 'table'.
Thanks

Iniciar sesión para comentar.


John D'Errico
John D'Errico el 12 de Jun. de 2016
Huh? Those are m-files, scripts in this case. You can edit it with any text editor, including the edit command in MATLAB. You can use type on the functions in MATLAB to show them on the command line.
A .mat file is not MATLAB code. It is a file containing data, MATLAB variables.
Of course, if you have actually named your m-files with spaces in the name, they will be unusable in MATLAB. Also uneditable. That will teach you to change the names to something that IS a legal m-file name:
- NO spaces in the names
- NO special characters. a "-" for example, is an impossibility.
- NO names that start with a numeric character.
A few other rules that I'm probably forgetting. For example, there is a limit on the number of total characters in the name. The computer system you are on and the MATLAB version may impact that number, since older releases were much more restrictive there.

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!

Translated by