octave-maintainers
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

eval function: Request for Matlab output


From: Oliver Heimlich
Subject: eval function: Request for Matlab output
Date: Sat, 07 Nov 2015 02:04:32 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Icedove/31.8.0

Hello,

I was wondering whether the eval function should have an effect on the
value for ans.

Could somebody please post the output of the following script from Matlab?


1
ans
2;
ans
3
eval ('4')
ans
5
eval ('6');
ans
7
x = 8
ans
9
x = 10;
ans
11
x = eval ('12')
ans
13
x = eval ('14;')
ans
15
x = eval ('16');
ans
17
x = eval ('18;');
ans


Thanks
Oliver



reply via email to

[Prev in Thread] Current Thread [Next in Thread]