filename input into function

37 次查看(过去 30 天)
rigel jaquish
rigel jaquish 2018-3-3
Really basic question, I have just started using MatLab. I have a function that pulls specific columns out of arrays that could be in any of four data files I am working with. Thus, my goal is to input a filename, have the function load the file, and then return the specific columns. Here is my current function:
function [tlat, trate] = lss_rr(filename)
G = load(filename)
m = G(:,3)
t = G(:,4)
But when I input a filename, the name returns as an undefined variable.

回答(2 个)

Walter Roberson
Walter Roberson 2018-3-3
[TL, TR] = lss_rr('YourFile.txt');
Change YourFile.txt to the name of your file.
Do not try to use [TL, TR] = lss_rr(YourFile.txt); as that will try to evaluate YourFile as a variable.

luis suarez
luis suarez 2019-9-20
When i type this command in matlab
function power_flow(filename)
Where filename is a .txt file
It says undefined variable. Can somebody help me please.
  4 个评论
Walter Roberson
Walter Roberson 2019-9-20
power_flow('NameOfYourTextFileGoesHere.txt')
luis suarez
luis suarez 2019-9-22
Thank you very munch Mr walter Roberson it works now.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Whos 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by