Clear Filters
Clear Filters

how to split cell array values into two columns?

2 views (last 30 days)
Prasanna
Prasanna on 5 Dec 2017
Commented: KL on 5 Dec 2017
I've a variable in cell array as
[2.13949546690144;56.9515770543056] [1.98550875192835;50.4110852121618] . . . . . I want to split it into two columns with two decimal-point numbers as
2.13 56.95
1.98 50.41
.
.
.
by removing open, close braces and semicolon such as [ ; ]

Answers (1)

KL
KL on 5 Dec 2017
one way:
C = {[2.13949546690144;56.9515770543056]};
A = round([C{:}].'*100)/100
A =
2.1400 56.9500
  8 Comments

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!