Manipulating data in Cell Arrays

조회 수: 2 (최근 30일)
ARS
ARS 2015년 8월 31일
편집: Jan 2015년 10월 27일
Hi All
I have a simple question as follows:
I have a cell matrix of size (20 X 20). All cells are filled with data like 'S1', 'S2', 'S3' to 'S400'. There is no other data. I want to remove 'S' from all cells and only keep the numeric part in the matrix.
Your help will be highly appreciated.
Regards
AMD.

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2015년 8월 31일
편집: Azzi Abdelmalek 2015년 8월 31일
If data is your matrix
out=str2double(cellfun(@(x) regexp(x,'\d+','match'),data))
  댓글 수: 1
ARS
ARS 2015년 8월 31일
Thanks Azzi, works great.

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

추가 답변 (1개)

Jan
Jan 2015년 10월 27일
편집: Jan 2015년 10월 27일
str2double(strrep(data, 'S', ''))

카테고리

Help CenterFile Exchange에서 Cell Arrays에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by