str2num conversion for vectors

3 ビュー (過去 30 日間)
Diana Acreala
Diana Acreala 2012 年 4 月 11 日
Hello! About str2num conversion..
This is what I found in the Matlab help: A = str2num('uint16(500)') A = 500
class(A)
ans =
uint16
I want to do this for a vector like: A = str2num('uint16(500 300 100)') The result will be: A= [];
How can I solve this problem?
Thanks!

採用された回答

Andrei Bobrov
Andrei Bobrov 2012 年 4 月 11 日
A = str2num('uint16([500 300 100])')
  1 件のコメント
Diana Acreala
Diana Acreala 2012 年 4 月 11 日
Thank you!

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

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by