How can I get a value from another m file ?

3 ビュー (過去 30 日間)
nero
nero 2015 年 12 月 6 日
コメント済み: Patrick Miller 2020 年 4 月 24 日
Hi , Lets say I have the following m file
function y = f1(x)
y = exp(x);
title = 'graph 1';
end
how can I access the variable (title) in my main m file ? for example using the title for a plot in my main file

回答 (1 件)

Geoff Hayes
Geoff Hayes 2015 年 12 月 6 日
nero - return title as an output parameter from your call to the function
function [y,title] = f1(x)
Although, would the title always be 'graph 1', or could it be something different?
  3 件のコメント
Geoff Hayes
Geoff Hayes 2015 年 12 月 6 日
In your main m file, you would call the function as
[y,t] = f1(x);
passing your x into this function and obtaining the output parameters y and t (the title). How are you attempting to call the function now?
Patrick Miller
Patrick Miller 2020 年 4 月 24 日
yes

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeWhos についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by