How do I do this? Pass a filename to a function?

9 次查看(过去 30 天)
I have created a function to browse a file in a gui. Now I have another function which does some calculations with the variables in the browsed file. So how do I load that file's contents in the new function?

采纳的回答

Image Analyst
Image Analyst 2018-7-1
In your first function you pass the filename to the new function:
results = new_function(filename);
Then in new_function you read in the data and do something with it.
function results = new_function(filename)
data = importdata(filename); % of xlsread() or csvread() or readtable() or whatever...
% Now do something with data....
  5 个评论
new user 00
new user 00 2018-7-2
don't mistake me. But even now I'm not so clear with what to do. Is there any videos related to this?
Image Analyst
Image Analyst 2018-7-2
Stuart has an excellent collection of them here:
two of which are the second and fourth links on Stephen's list.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Environment and Settings 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by