Info

この質問は閉じられています。 編集または回答するには再度開いてください。

How do i import data from a function ?

1 回表示 (過去 30 日間)
Nitesh Panchal
Nitesh Panchal 2016 年 10 月 4 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
My function asks for a choice between 2 specific options :
disp('1. No Wall');
disp('2. Two-Side Wall');
coursetype=input('Choose one of the above:');
I want to extract the data in coursetype and use it in a normal m file , how do i do that?
The coursetype is also not the output for this particular function , it is just a option to vary the kind of output in the graph.

回答 (2 件)

Sima
Sima 2016 年 10 月 4 日
Why don't you just return this information as another output of the function?

M..
M.. 2016 年 10 月 4 日
You can create a handle in your file and send it as an input to the function. Then, you don't need to return it as an output.

製品

Community Treasure Hunt

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

Start Hunting!

Translated by