matlab函数可以检测它是否已用分号调用

时间:2019-07-19 06:54:32

标签: matlab undocumented-behavior

是否有一种(可能是未记录的)方法来检测某个函数是由分号调用的,还是固有地不可能的?

示例:

function myfunc()
  if semicolon % <-- how to get this boolean
    disp('semicolon')
  else
    disp('no semicolon')
  end
end

myfunc; % 'semicolon' should be displayed
myfunc % 'no semicolon' should be displayed

0 个答案:

没有答案