Loading a file into a variable in funtion

I want to load a file in a variable in a function but when I do thta , matlab gives the file 's data in his own variable "ans"
function data=read_data(i)
data=load(num2str(i));
end

1 comentario

Stephen23
Stephen23 el 11 de En. de 2023
Editada: Stephen23 el 12 de En. de 2023
"matlab gives the file 's data in his own variable "ans""
How to call functions with output arguments is explained in the introductory tutorials:

Iniciar sesión para comentar.

Respuestas (1)

Sulaymon Eshkabilov
Sulaymon Eshkabilov el 11 de En. de 2023
How you can call a function to load a data file, e.g.:
FName = 'MY_data'; % .txt data files that all contain the sequential name: MY_data1.txt, MY_data2.txt, etc.
N = input('Enter the number of data files to load: ');
for ii = 1:N
Name = stcat([FName, num2str(ii) '.txt']);
data{ii} = read_data(Name);
end
function data=read_data(Name)
data=load(Name);
end

Categorías

Productos

Versión

R2021b

Etiquetas

Preguntada:

el 11 de En. de 2023

Editada:

el 12 de En. de 2023

Community Treasure Hunt

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

Start Hunting!

Translated by