Convert a number to a vector

20 ビュー (過去 30 日間)
monica garcia
monica garcia 2016 年 3 月 13 日
コメント済み: monica garcia 2016 年 3 月 13 日
I'm working on a code that coverts ASHRAE refrigerant numbers to a chemical formula. I'm trying to convert a number ex: 123 to a vector [1 2 3] (from there the code falls into place). I've looked at this board with a similar question and copying and pasting the codes doesn't look the same for me. The comenters posted this code num2str(1234)*1+'0' => [1, 2 ,3, 4] but when I post the same code with a cleared command window I get the following;
num2str(1234)*1+'0'
ans =
97 98 99 100
  2 件のコメント
Roger Stafford
Roger Stafford 2016 年 3 月 13 日
You need to make it clear whether you are dealing with strings of characters or numerical values.
monica garcia
monica garcia 2016 年 3 月 13 日
It's supposed to be numerical values.

サインインしてコメントする。

採用された回答

Image Analyst
Image Analyst 2016 年 3 月 13 日
The commenters were wrong, or you transcribed it with an error. The plus should be a minus:
out = num2str(1234) - '0'
  1 件のコメント
monica garcia
monica garcia 2016 年 3 月 13 日
Thank you very much, this fixed it right up.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeChemistry についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by