How to combine an cell array and a double array
이전 댓글 표시
i am trying to convert a cell array (consisting of strings) into a double array in order to be able to combine it with a double array (matrix) (consisting of numbers)using str2double but it gives me NaN? is there another solution?
[EDITED, Jan Simon, important information from a comment]:
Example:
x = {'USGG3M Index' 'USGG6M Index' 'USGG9M Index'}
how to convert it to a double matrix?
댓글 수: 5
Jan
2012년 3월 22일
Please post an explicite example.
yasmine
2012년 3월 22일
Jan
2012년 3월 22일
Dear yasmine: How do you want to convert 'USGG3M Index' to a double? What is the wanted result? NaN is the expected result as explained in "doc str2double".
Geoff
2012년 3월 22일
cellfun( @(s) str2double(regexp(s,'\d+','match')), x ) ???
yasmine
2012년 3월 25일
답변 (3개)
Jan
2012년 3월 25일
You cannot insert strings in a double array in Matlab. A double array consists of doubles, as the name says already.
A cell can contain elements of different types:
C = {'Header1', 'Header2'; ...
17, 8.15};
But of course C is not a double array anymore. The usual method to store numerical arrays and names for the columns is using two different variables.
Your question could not be answered sufficiently for three days now, because you do not post the required details inspite of repeated questions for clarifications. This is inefficient.
댓글 수: 5
yasmine
2012년 3월 28일
Walter Roberson
2018년 2월 3일
Tao Bi comments to Jan Simon:
Good explanation for how to store the numerics and the strings
Vincent
2020년 7월 24일
If I store values and column names in two different variables, is it in some way possible to combine both when saving to a txt file?
Here is an example:
header = {'m1','m2','m3'};
values = zeros(nSamples,3);
values(:,1) = m1;
values(:,2) = m2;
values(:,3) = m3;
here I want to combine both to a variable 'header_values'
save('output.txt','header_values','-ascii');
Thx for your answers
Walter Roberson
2020년 7월 24일
save() supports -append that can add more to the end of a text file.
However, save -ascii does not support cell array of character vectors, and if you try to save -ascii of a plain character vector then it will convert the characters to numbers.
dlmwrite() can write character vectors, but you have to abuse its 'precision' option pretty badly to do that.
The realistic options are:
- fopen() / fprintf() the header / fclose, after which you can save -ascii of just the numbers
- fopen() / fprintf() everything / fclose, which can produce any text format you want
- Use a table() object with the headers as the variable names, and writetable()
- Convert everything into a cell array, one header or one number per cell, and use writecell()
These days I would typically use writetable() unless I had specialized output format needs; if I had specialized needs then tricks like dlmwrite() are just not worth it, and fprintf() with a custom format is best.
Vincent
2020년 7월 24일
Thank you for the quick answer. It worked perfectly well first converting the array to a table (array2table) and then save it with writetable(). :)
Wayne King
2012년 3월 22일
I think you should give us a very simple concrete example with MATLAB code.
x = {'2','3','4'};
y = cellfun(@str2double,x,'uni',false);
y = cell2mat(y);
댓글 수: 2
yasmine
2012년 3월 22일
Wayne King
2012년 3월 22일
Jan's question is right on target, the problem is what kind of number do you think USGG3M is?
Jan
2012년 3월 22일
C = {'3.14159265', '1.414562373095'};
D = sscanf(sprintf('%s,', C{:}), '%g,');
This is still faster than using a C-mex to convert the single strings.
댓글 수: 5
yasmine
2012년 3월 22일
Jan
2012년 3월 22일
No array? What do you get as output?
yasmine
2012년 3월 22일
Jan
2012년 3월 22일
Because 'USGG3M Index' is not the string representation of a number, in opposite to '2' or '2.3'. Please explain what you expect as result of converting 'USGG3M Index' to a double. This core point of your question is not clear.
My example is working also, btw.
yasmine
2012년 3월 25일
카테고리
도움말 센터 및 File Exchange에서 Data Type Conversion에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!