Dealing with weird Data in Cell Array
조회 수: 6 (최근 30일)
이전 댓글 표시
I have the following data that is random throught a cell array. I need to remove the second decimal point on some of the data
LOLS Purge Supply - Standby.
GHe-W Supply - Standby.
0.000320.
42.9333
42.9333
So in this example I need 0.000320. to be equal 0.000320 so I can later plot this data. How do I remove the second decimal point on the data that has 2 decimal points?
Please any help would be greatly appreciated. -Aaron
댓글 수: 0
채택된 답변
Matt Fig
2011년 5월 18일
C = {'LOLS Purge Supply - Standby.';'GHe-W Supply - Standby.';'0.000320.';'42.9333';'42.9333'}
D = regexprep(C,'\d\.$','')
EDIT Thanks to Walter for catching my error.
That last line should be:
D = regexprep(C,'(?<=\d)\.$','') % Use look-behind!
댓글 수: 3
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Cell Arrays에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!