scope of a variable

1 回表示 (過去 30 日間)
biswajita lenka
biswajita lenka 2012 年 1 月 2 日
hi, i am modifying a global variable inside a function.inside the function it works and stores the modified value.but when i am trying to access the same variable outside the function after it is modified,it is showing me the old value instead of the modified new value. can anybody help me?

採用された回答

Walter Roberson
Walter Roberson 2012 年 1 月 2 日
Have you declared the variable as being global inside the function? Global variables are only global in routines that use the 'global' declaration (or in nested routines that share variables with a routine that declares them as global.)
Also, note that if you have declared a variable as a parameter to a function, and then in the function you declare it to be global, then it will not be treated as global: using a variable as a parameter overrides a global declaration.
  1 件のコメント
biswajita lenka
biswajita lenka 2012 年 1 月 3 日
thanks,it is working.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeInteractive Control and Callbacks についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by