Convert String Array to Numeric matrix and string array
이전 댓글 표시
Hi! I have a 3 by 15 string matrix. I wish to extract the first and third row as numbers to be assigned to a numerical matrix, while extracting the second row as a row of strings, which are to be assigned to another matrix.
Here is the info:
data_events=
"1" "60" "" "" "" "" "" "" "" "" "" ""
"-" "" "" "" "" "" "" "" "" "" "" ""
"60" "50" "2" "25" "0" "0.2" "0.2" "10" "1000000000" "100000" "100000" "1000000000"
Columns 13 through 15
"" "" ""
"" "" ""
"100000" "100000" "1080"
The idea is to create a matrix Event_Vals, which consists of the stuff in the first and third rows, while another matrix, Event_Comments is to contain the contents of the second row.
답변 (2개)
per isakson
2019년 6월 30일
Try this
%%
data_events = [
"1" "60" "" "" "" "" "" "" "" "" "" ""
"-" "" "" "" "" "" "" "" "" "" "" ""
"60" "50" "2" "25" "0" "0.2" "0.2" "10" "1000000000" "100000" "100000" "1000000000"
];
%%
Event_Vals = str2double( data_events([1,3],:) );
댓글 수: 3
Guillaume
2019년 6월 30일
Note that you with string arrays (not char arrays), you can simply use double instead of str2double
Event_Vals = double(data_events([1, 3], :))
The same way that to convert numbers to string, you can simply use string:
>> string([1, 2, 3, 4])
ans =
1×4 string array
"1" "2" "3" "4"
per isakson
2019년 6월 30일
+1
I had missed "Unlike the char function, string does not treat numbers as ASCII or Unicode® code points."
dpb
2019년 6월 30일
Me neither. Having MATLAB act similar to BASIC is not something we're used to...I've yet to play that much with the string class so still discovering such things, too.
dpb
2019년 6월 30일
EventVals=str2double(data_events(1:2:end,:));
EventCmnt=data_events(2,:);
카테고리
도움말 센터 및 File Exchange에서 Characters and Strings에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!