Global Variable

I want know the procedure to pass a value of a variable from one function to another.

1 个评论

Why don't you pass it as an input argument of the function?

请先登录,再进行评论。

回答(1 个)

define it with global
Example:
function fn1()
global var1;
function fn2()
global var1

标签

Community Treasure Hunt

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

Start Hunting!

Translated by