how to return first 5 digits of 6th column in cell array?

Hi Matlab community,
Here's another newbie question. I would like to replace the 6th column with the first 5 digits of that column (20134); I would then like to create a 7th column that is the last digit of the 6 column. Here's a sample array.
Thank-you for your help.
cell = {'this' 'is' 'a' 'cell' 'array' '2013420134' }

 채택된 답변

Jeff
Jeff 2014년 4월 6일

0 개 추천

Ok found it; thanks anyway all
cell{1,5}(1:5)

추가 답변 (1개)

Jos (10584)
Jos (10584) 2014년 4월 6일
C = {'this' 'is' 'a' 'cell' 'array' '2013420134' }
V = C{6} % retrieve the 6th cell
C{6} = V(1:5) % replace it
C{7} = V(end) % add a new cell
btw, avoid giving your variable the same name as a matlab function

댓글 수: 1

Thanks Jos for showing the alternative. Thanks for pointing out my ridiculous variable name, picked it quick for the example.
I basically ended up using a loop since there are close to 17000 variables
[m,n]=size(data); for i = 1:m data1{i,9} = data{i,9}(1:5); data{i,9} = {}; data{i,9} = data1{i,9}; end
Just having fun in matlab on a sunday night :)

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

카테고리

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

질문:

2014년 4월 6일

댓글:

2014년 4월 6일

Community Treasure Hunt

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

Start Hunting!

Translated by