Syntax on GUI calculator
显示 更早的评论
i have this syntax for getting factorial in my calcu.
x = get(handles.edit1,'String');
y = str2num(x);
z = factorial(y);
j='!';
k=strcat(x,j);
set(handles.edit1,'string',k);
set(handles.text1,'String',z);
my problem is that. i want to do MDAS of factorial. like 5! + 6!. when i click the calcu as it is. it evaluates 5! but when i start to press + and 6!, the value that appears in text1 doesnt seem to be right, although edit1 shows 5! + 6!.
回答(2 个)
Walter Roberson
2012-10-2
0 个投票
When you str2num() of '5!+6!', the result will be an empty string, as MATLAB will not be able to understand that string as a number. You will need to break it into pieces and figure out what to do with the pieces.
Azzi Abdelmalek
2012-10-2
z=factorial(x)
set(handles.text1,'String',z);
% is not correct, z is not a string
类别
在 帮助中心 和 File Exchange 中查找有关 Characters and Strings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!