Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
関数の出力に別の関数からアクセスしようとしています。私は次の機能を持っています:
function f = doSomething f = 5+6;
別の関数では、次のように doSomething を呼び出しています。
doSomething;
の値を取得する方法はありfますか? doSomething の出力を読み込んで表示したい。
f