Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

i have a .mat file as shown.the same data is used in different .mat files.but how it is generating variable val with diiferent sizes and different info?

1 vue (au cours des 30 derniers jours)
yuvaraj
yuvaraj le 21 Avr 2014
Clôturé : MATLAB Answer Bot le 20 Août 2021
function importfile2(fileToRead1)
%IMPORTFILE2(FILETOREAD1)
% Imports data from the specified file
% FILETOREAD1: file to read
% Auto-generated by MATLAB on 21-Apr-2014 10:21:10
% Import the file
newData1 = load('-mat', fileToRead1);
% Create new variables in the base workspace from those fields.
vars = fieldnames(newData1);
for i = 1:length(vars)
assignin('base', vars{i}, newData1.(vars{i}));
end
  1 commentaire
Walter Roberson
Walter Roberson le 21 Avr 2014
You can check to see how data is stored in the file by using "whos" with the "-file" argument.
for example,
whos -file MyMatFile.mat
Do that for two files for which you think that data should have the same size and same type.

Réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by