Unit conversion using switch case or else if functions
11 ビュー (過去 30 日間)
古いコメントを表示

Im supposed to use the switch case method or the else if method to solve this question. Anyone has any ideas on how to solve this?
5 件のコメント
回答 (1 件)
Srivardhan Gadila
2020 年 2 月 17 日
For "Like to make it in such a way that I only need to input the starting value and unit together and not separately" you can make use of strsplit, str2num functions as follows:
valuePlusUnit = "45.3245 ft3";
stringSplit = strsplit(valuePlusUnit);
value = str2num(stringSplit(1))
units = stringSplit(2)
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!