フィルターのクリア

How to remove the apostrophe's from a cell

8 ビュー (過去 30 日間)
Daniel Tanner
Daniel Tanner 2020 年 2 月 28 日
コメント済み: Daniel Tanner 2020 年 2 月 28 日
Hi
I have a 3-by-1 cell that I have imported from excel and for some reason the three entries in the cell have apostrophe's on them:
A = ['0.00092779';'0.00097348';'0.00094242']
I would like to plot the values of these on a graph but I cannot as I get a Line Class property error due to the apostrophe's. Is there a way to remove these?
Many thanks!

採用された回答

David Hill
David Hill 2020 年 2 月 28 日
Try this:
A=str2double(string(A));
  1 件のコメント
Daniel Tanner
Daniel Tanner 2020 年 2 月 28 日
Perfect, thank you! Knew it would be something simple. Still learning all the tips and tricks!

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

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by