global variables not cleared after 'clear;clc'

I have a global variable. I run the code for several times. I put 'clear;clc' at the front. Strangely before the global variable is called, it already has a value. However I rerun it, it always has a value before its line is called. What could've happened?

 채택된 답변

Walter Roberson
Walter Roberson 2018년 12월 10일

0 개 추천

clear by itself only removes variables from the current workspace not the global workspace . You need to
clear global

댓글 수: 5

madhan ravi
madhan ravi 2018년 12월 10일
Exactly as sir Walter says, that’s why most of the matlab experts do not recommend global variables.
This aspect is relatively far down on my reasons for not recommending global variables. ;-)
madhan ravi
madhan ravi 2018년 12월 10일
I agree sir Walter , what I mean't was using global variables makes debugging difficult causing a lot of confusions.
a a
a a 2018년 12월 10일
I love using global variables to save writing functions with a long list of argin's. Is it a legitimate reason?
using global variables to save writing functions with a long list of argin's. Is it a legitimate reason?
There is a big difference between "legitimate" reasons and "good" reasons. Making a bad programming decision because your mind is muddled by your cold and flu medication is a "legitimate" reason. Delegating the decision to bald hampsters for cost-savings reasons is a "legitimate" reason. Using global variables because your astrologer slash homoepathic guru is a "legitimate" reason. But these are not good reasons.
If you want to save writing long lists of arguments, then there are multiple strategies, including using nested functions with shared variables.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Data Preprocessing에 대해 자세히 알아보기

질문:

a a
2018년 12월 10일

댓글:

2018년 12월 10일

Community Treasure Hunt

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

Start Hunting!

Translated by