How to remove the apostrophe's from a cell

16 views (last 30 days)
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!

Accepted Answer

David Hill
David Hill on 28 Feb 2020
Try this:
A=str2double(string(A));
  1 Comment
Daniel Tanner
Daniel Tanner on 28 Feb 2020
Perfect, thank you! Knew it would be something simple. Still learning all the tips and tricks!

Sign in to comment.

More Answers (0)

Categories

Find more on Line Plots in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!