Hello all,
I have a 63x1 cell and its contents basically look as shown below
'(4,4)'
'(3,4)'
'(2,4)'
'(1,4)'
'(0,4)'
'(-1,4)'
'(-2,4)'
I would like Matlab to the pick the integers from each cell and store it in different variables. For example, x should contain [4 3 2 1 0 -1 -2] and Y should contain [4 4 4 4 4 4 4 ].
I would be grateful if someone can help me with this.
Thanks in advance
Best Regards,
Bala

 채택된 답변

Stephen23
Stephen23 2020년 7월 22일
편집: Stephen23 2020년 7월 22일

1 개 추천

Much more efficient than cellfun:
>> C = {'(4,4)';'(3,4)';'(2,4)';'(1,4)';'(0,4)';'(-1,4)';'(-2,4)'};
>> V = sscanf([C{:}],'(%f,%f)');
>> X = V(1:2:end)
X =
4
3
2
1
0
-1
-2
>> Y = V(2:2:end)
Y =
4
4
4
4
4
4
4

댓글 수: 1

Thanks a lot for such a quick response! It works like a charm! Was a great help.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 MATLAB에 대해 자세히 알아보기

제품

릴리스

R2019a

태그

Community Treasure Hunt

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

Start Hunting!

Translated by