Syntax on GUI calculator

1 次查看(过去 30 天)
Portgas Ace
Portgas Ace 2012-10-2
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
Walter Roberson 2012-10-2
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
Azzi Abdelmalek 2012-10-2
z=factorial(x)
set(handles.text1,'String',z);
% is not correct, z is not a string

类别

Help CenterFile Exchange 中查找有关 Environment and Settings 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by