how to convert a string contains number seperated by commas into a matrix of numbers

1 回表示 (過去 30 日間)
lafnath p
lafnath p 2016 年 10 月 24 日
編集済み: KSSV 2016 年 10 月 24 日
if a string s='6,7,8,9,19' how can i convert it as matrix=[6 7 8 9 19]

採用された回答

KSSV
KSSV 2016 年 10 月 24 日
編集済み: KSSV 2016 年 10 月 24 日
s='6,7,8,9,19' ;
matrix = str2num(s);

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeData Type Conversion についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by