You are now following this question
- You will see updates in your followed content feed.
- You may receive emails, depending on your communication preferences.
Problem working with popupmenu
1 view (last 30 days)
Show older comments
Hi guys.
I'm working on GUIDE and i have the next problem:
I have to make a conversor (Decimal, Hexadecimal, octal and bynary)
When i put a number in the edit 1 i have to choose in the "popupmenu1" what value is it (Decimal, Binary, Octal, Hexadecimal) then i choose in the popupmenu2 what value i want convert (Decimal, Binary, Octal, Hexadecimal) and the converted value has to set on the edit2.
mathlab gave me the next message:
"Error in
matlab.graphics.internal.figfile.FigFile/read>@(hObject,eventdata)convertidordecantidades('popupmenu2_Callback',hObject,eventdata,guidata(hObject))
Error while evaluating UIControl Callback."
I hope you guys can help me.
%This is my code%
value = str2double(handles.edittext1.String)
if handles.popupmenu1.Value == 1
if handles.popupmenu2.Value == 1
convertedValue = dec2bin(value);
elseif handles.popupmenu2.Value == 2
elseif handles.popupmenu2.Value == 3
elseif handles.popupmenu2.Value == 4
elseif handles.popupmenu2.Value == 5
end
elseif handles.popupmenu1.Value == 2
if handles.popupmenu2.Value == 1
convertedValue = dec2base(value,8);
elseif handles.popupmenu2.Value == 2
elseif handles.popupmenu2.Value == 3
elseif handles.popupmenu2.Value == 4
elseif handles.popupmenu2.Value == 5
end
elseif handles.popupmenu1.Value == 3
if handles.popupmenu2.Value == 1
convertedValue = dec2base(value,16);
elseif handles.popupmenu2.Value == 2
elseif handles.popupmenu2.Value == 3
elseif handles.popupmenu2.Value == 4
elseif handles.popupmenu2.Value == 5
end
elseif handles.popupmenu1.Value == 3
if handles.popupmenu2.Value == 1
elseif handles.popupmenu2.Value == 2
elseif handles.popupmenu2.Value == 3
elseif handles.popupmenu2.Value == 4
elseif handles.popupmenu2.Value == 5
end
elseif handles.popupmenu1.Value == 5
if handles.popupmenu2.Value == 1
elseif handles.popupmenu2.Value == 2
elseif handles.popupmenu2.Value == 3
elseif handles.popupmenu2.Value == 4
elseif handles.popupmenu2.Value == 5
end
end
handles.edit2.String = sprintf('2.%f',convertedValue)
30 Comments
Walter Roberson
on 15 Sep 2019
value = str2double(handles.edittext1.String)
That line is only valid if the input is decimal, which is not the case when you are converting from any base other than decimal. You should only be using that line when handles.popupmenu1.Value is 4.
Jhon Rackham
on 15 Sep 2019
Hi dear Walter.
What i have to do in this case? Can you help me with that please?
Thanks for the help, master!
Walter Roberson
on 15 Sep 2019
handles.edit2.String = sprintf('2.%f',convertedValue)
That line assumes that convertedValue is internal binary format (which would not be a bad thing) and assumes that the output is decimal, but the output should only be decimal if handles.popupmenu2.Value == 4.
You need to re-read
Jhon Rackham
on 15 Sep 2019
I was reading your comments dear Walter, but i still don't know how to do it.
So that means my code is useless or i'am the useless? :(
Image Analyst
on 15 Sep 2019
Edited: Image Analyst
on 15 Sep 2019
You're setting the converted value in each one of the if statements, right? Not just 3 of them, right?
Jhon Rackham
on 15 Sep 2019
Edited: Jhon Rackham
on 15 Sep 2019
Yes Image Analyst i'm setting the converted value in each one of the if statements. But i need set the whatever converted value on the edit 2. I don't know if i'm explaining you good.
pd: I'm using your code you gave me days ago, but i'm still having problems. :(
Image Analyst
on 15 Sep 2019
It should work. Post your complete files, both the .fig and .m files. However I'm leaving for the day in a few minutes.
Walter Roberson
on 15 Sep 2019
value_in_str = handles.edittext1.String;
switch handles.popupmenu1.Value
case 1
value_in_dec = bin2dec(value_in_str);
case 2
value_in_dec = hex2dec(value_in_str);
end
switch handles.popupmenu2.Value
case 1
value_out_str = dec2bin(value_in_dec);
case 2
value_out_str = dec2hex(value_in_dec);
end
handles.edit2.String = value_out_str;
Jhon Rackham
on 15 Sep 2019
Those are my files, i hope you can help me Image Analyst.
Image Analyst
on 15 Sep 2019
No, you did not have stuff inside each "elseif" block as you claimed. You need to have stuff in each one, like Walter showed. Don't skip any. You can use "if" or switch" - basically the same.
Jhon Rackham
on 15 Sep 2019
O was that, I didn't understood then. Si I only have to do that and how I do the rest? Can you please help me fixing my program? ?
Jhon Rackham
on 15 Sep 2019
God, I don't know why I can't understand. Please, need help.
Jhon Rackham
on 15 Sep 2019
Please Image Analyst, help meeeee. :(
Walter Roberson
on 15 Sep 2019
What happened when you tried the code I posted in
https://www.mathworks.com/matlabcentral/answers/480482-problem-working-with-popupmenu#comment_746191
and what happened when you examined that and then went back to re-read my hints in https://www.mathworks.com/matlabcentral/answers/479628-how-to-make-a-program-that-conver-a-numer-to-binary-decimal-hexadecimal-and-octal#comment_744171 and used my hints to extend your code to handle other bases?
Jhon Rackham
on 15 Sep 2019
It show me errors Mr Roberson.
I notice i'm the useless. Can't do anything. </3
Thats the reazon because i'm asking for favors. :(
Jhon Rackham
on 15 Sep 2019
I don't know if i choose "switch" or "if".
Jhon Rackham
on 15 Sep 2019
Anyways, my program doesn't work.
Walter Roberson
on 15 Sep 2019
It show me errors Mr Roberson.
Would you mind turning your screen by about 7 degrees so that I can read it from here with my binoculars? I'm having terrible difficulty with glare at the moment.
Jhon Rackham
on 15 Sep 2019
Look mr Roberson, the same error.
Can i send you my program for you review it please?
Jhon Rackham
on 15 Sep 2019
I've fixed my problem Mr Roberson.
Please, help me to convert the rest of the values (Octal and Decimal).
I hope you can help me.
Walter Roberson
on 15 Sep 2019
So what did I suggest in https://www.mathworks.com/matlabcentral/answers/479628-how-to-make-a-program-that-conver-a-numer-to-binary-decimal-hexadecimal-and-octal#comment_744171 as the way to handle the other bases ?
Jhon Rackham
on 15 Sep 2019
Edited: Jhon Rackham
on 15 Sep 2019
Mr Roberson, please. don't be bad with me. :(
I was reading your comments, but in the code is not the same is guess, i don't know where i have to put the "sscanf() with '%lo' format" for conver octal number.
When you have time for help me Walter?
Jhon Rackham
on 15 Sep 2019
I know it is not your obligation to help me, but please, you are a teacher here, it would not take you long to help me. Please I beg you.
Walter Roberson
on 15 Sep 2019
>> sscanf('123','%lo')
ans =
uint64
83
>> sprintf('%lo', 83)
ans =
'123'
>> 1*8^2 + 2*8^1 + 3*8^0
ans =
83
String to be converted goes as the first parameter to sscanf(), method of conversion goes as the second parameter to sscanf()
Jhon Rackham
on 15 Sep 2019
Awesome Mr Roberson.
My program finally work, thanks a lot for the help, GOD bless you.
Jhon Rackham
on 15 Sep 2019
Mr Roberson, are you thereeee?
I forgot to ask you something else.
What can I do to prevent the user from inserting a wrong amount?
For example: if i put this value on the edit1: 123456 and i choose in the popupmenu 1 as binary then i choose on the popupmenu2 i want to convert it as hexadecimal, obvuously it will be an error, because we know 123456 isn't a binary value, maybe for solve this error, we can put a msgbox saying *hey this isn't a binary value*, something like that. But what i have to do for solve this? sorry if i'm bothering you a lot of times.
This is an example:
Walter Roberson
on 15 Sep 2019
Preventing the user from entering a number that is invalid for the currently selected base is complicated. It requires checking every keystroke as the user types it in, and handling deletions yourself, and (for obscure reasons) keeping track of what the user typed in by yourself.
It is a lot easier to validate the number at the time the conversion is requested.
- binary: all characters must be members of the set {'0', '1'}
- octal: all characters must be members of the set {'0', '1', '2', '3', '4', '5', '6', '7'}
- decimal: all characters must be members of the set {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9'}
- hex: all characters must be members of the set {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F', 'a', 'b', 'c', 'd', 'e', 'f'}
Jhon Rackham
on 15 Sep 2019
Oh I see Mr Roberson. Can you give me an example in my code please?
Walter Roberson
on 15 Sep 2019
Consider
ismember('1236', '0':'4')
ismember('1236', ['0':'4', '6':'7'])
Jhon Rackham
on 16 Sep 2019
Thanks Mr Roberson. I have to put it in every case, right?
Answers (0)
See Also
Categories
Find more on Argument Definitions in Help Center and File Exchange
Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!An Error Occurred
Unable to complete the action because of changes made to the page. Reload the page to see its updated state.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom(English)
Asia Pacific
- Australia (English)
- India (English)
- New Zealand (English)
- 中国
- 日本Japanese (日本語)
- 한국Korean (한국어)