How do I use a switch statement to convert units?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
patty
el 29 de Abr. de 2015
Editada: Joseph Cheng
el 29 de Abr. de 2015
For example, if I want to convert from grams to pounds or grams to kilograms. Like use the switch statement to display a menu that will require an input value of grams to convert to kilograms or pounds as the two options and display the answer.
1 comentario
James Tursa
el 29 de Abr. de 2015
Please post what you have done so far and we can comment on it and make suggestions.
Respuesta aceptada
Joseph Cheng
el 29 de Abr. de 2015
Editada: Joseph Cheng
el 29 de Abr. de 2015
Well you probably wouldn't want to use a switch statement to display a menu. You'd probably use something like a questdlg(), inputdlg() or generate your own Gui to get what the original unit is and what you're converting to. this will give you inputs for two different switch statements. First switch statement would then know which unit you're starting in and then convert to your pick of a standard (lets say grams or meters depending on the unit). Then your second switch statement would be what you're converting to. and since you've picked a standard unit you know where you're starting from. That way you don't need to create each possible conversion that does lbs->gram, lbs-> kg, lbs->oz.
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Unit Conversions en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!