Problem identifying a symbolic variable as a double

조회 수: 1 (최근 30일)
Dina Irofti
Dina Irofti 2014년 6월 3일
답변: Mischa Kim 2014년 6월 3일
Hello!
I’m dealing with symbolic toolbox in Matlab. I have this code:
>> syms a b c;
a = b + c;
>> res = subs(a, {b, c}, {1, 1})
res =
2
>> isnumeric(res)
ans =
0
I would like an “isnumeric” function that returns 1 for this situation. I tried vpa and double but the answer is still 0. There is any other function that I can use or should I write it by myself?
Thanks!

답변 (1개)

Mischa Kim
Mischa Kim 2014년 6월 3일
Dina, did you try
isnumeric(double(res))
Just in case this does not result in a "1", what MATLAB release are you working with?

카테고리

Help CenterFile Exchange에서 Conversion Between Symbolic and Numeric에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by