How to save variables in a function to the workspace

19 ビュー (過去 30 日間)
Hiroyasu Fujita
Hiroyasu Fujita 2021 年 2 月 12 日
コメント済み: Hiroyasu Fujita 2021 年 2 月 13 日
i want to save the variables( x , y , z , xx , yy) in a function to the workspace.
**************************************
global x
global y
global z
global xx
global yy
test(1,2,3)
function test(x,y,z)
x
y
z
x+y+z
test2(4,2)
end
function test2(xx,yy)
xx
yy
xx-yy
end

採用された回答

Cris LaPierre
Cris LaPierre 2021 年 2 月 12 日
Don't use globals. Return your variables through the function output. See the documentation. This example from that page shows how to return the variable ave.
myave = average([1:10])
myave = 5.5000
% function declaration
function ave = average(x)
ave = sum(x(:))/numel(x);
end
  9 件のコメント
Stephen23
Stephen23 2021 年 2 月 13 日
@Hiroyasu Fujita: how to call functions with one or more outputs is explained here:
Those tutorials explain many basic concepts that you will need to know if you want to use MATLAB.
Hiroyasu Fujita
Hiroyasu Fujita 2021 年 2 月 13 日
@Stephen Cobeldick , @Walter Roberson @Cris LaPierre
Thank you for your comments.
The problem has been solved.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMatrices and Arrays についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by