How to write a function with two output variables that return numerical and text data
3 次查看(过去 30 天)
显示 更早的评论
I am trying to write a function with two outputs num_data and Txt_data. I need the function to return this infomation. It is taking this info from an imported xlsx file. This is what I have so far but I'm not sure its correct.
1 个评论
Stephen23
2022-10-29
"How to write a function with two output variables that return numerical and text data"
You should start by reading this page, which explains the basics of how to define and call functions:
Note that the documentation shows how to define output arguments. So far you have not defined any output arguments, so the variables NUM_DATA and TXT_DATA are simply discarded when the function returns.
You also have not defined input arguments, so NUM and TXT are undefined within that function (so would throw an error).
But all of that is rather moot becuse you have not called that function anywhere, which means currently your function does nothing at all. You need to call the function if you want to use it (calling means writing it down in code with all of its required inputs and outputs, exactly as you call XLSREAD in your code with one input and two outputs).
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Import and Analysis 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!