在不同的函数空间中取值出错
在一个M文件的空间中,若运行下面的语句eflag=evalin('base','exist analysegv');
提示出错
??? Error: Unexpected MATLAB expression.
实际上,在基本空间中,名为analysegv变量是存在的,我是想检查此变量名是否在base空间中存在,若存在,刚令caller 空间的变量eflag为1,否则为0. 直接用eflag=evalin('base','analysegv');试试
help里有说明:
This example extracts the value of the variable var in the MATLAB base workspace and captures the value in the local variable v:
v = evalin('base', 'var');
回复 沙发 friendchj 的帖子
谢谢。v = evalin('base', 'var');是直接把var的值赋给V,但如何用evalin判断基本空间中analysegv是否存在呢?:@) 这样绝对可以
eflag=evalin('base','exist(''analysegv'')') help exist
页:
[1]