Convert text of multiple digits to numbers

1 回表示 (過去 30 日間)
saeed
saeed 2014 年 7 月 31 日
編集済み: saeed 2014 年 8 月 5 日
if i have a variable x containing in each row something like this :
  • 123123123
  • 123798731
  • 234874343
if i use class(x) it prints char . and if i write cellstr(x) i get :
  • ' 123123123 '
  • ' 123798731 '
  • ' 234874343 '
how can i convert x to column of numbers so :
1- each row is a number meaning x(1) = 123123123 and not 1.
2- i would be able to use meshgrid(x,x) and i would get the output :
123123123 123798731 234874343
123123123 123798731 234874343
123123123 123798731 234874343
thanks

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2014 年 7 月 31 日
A={' 123123123 '
' 123798731 '
' 234874343 '}
str2double(A)
  4 件のコメント
saeed
saeed 2014 年 7 月 31 日
編集済み: saeed 2014 年 7 月 31 日
same output for both ways , see pictures below.
saeed
saeed 2014 年 8 月 5 日
編集済み: saeed 2014 年 8 月 5 日
well... the problem was that my numbers were long like 24-25 digits and matlab couldnt print it that long (although i used format long), but in general your method works , thank you.

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

その他の回答 (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