Borrar filtros
Borrar filtros

How to combine an cell array and a double array

40 visualizaciones (últimos 30 días)
yasmine
yasmine el 22 de Mzo. de 2012
Comentada: Vincent el 24 de Jul. de 2020
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 comentarios
Geoff
Geoff el 22 de Mzo. de 2012
cellfun( @(s) str2double(regexp(s,'\d+','match')), x ) ???
yasmine
yasmine el 25 de Mzo. de 2012
but this returns the number 3 only not the whole string USGG3M Index

Iniciar sesión para comentar.

Respuestas (3)

Jan
Jan el 25 de Mzo. de 2012
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 comentarios
Walter Roberson
Walter Roberson el 24 de Jul. de 2020
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:
  1. fopen() / fprintf() the header / fclose, after which you can save -ascii of just the numbers
  2. fopen() / fprintf() everything / fclose, which can produce any text format you want
  3. Use a table() object with the headers as the variable names, and writetable()
  4. 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
Vincent el 24 de Jul. de 2020
Thank you for the quick answer. It worked perfectly well first converting the array to a table (array2table) and then save it with writetable(). :)

Iniciar sesión para comentar.


Wayne King
Wayne King el 22 de Mzo. de 2012
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 comentarios
yasmine
yasmine el 22 de Mzo. de 2012
i have tried in your example, it worked. However, in the case of my exmaple, it gives me NaN
Wayne King
Wayne King el 22 de Mzo. de 2012
Jan's question is right on target, the problem is what kind of number do you think USGG3M is?

Iniciar sesión para comentar.


Jan
Jan el 22 de Mzo. de 2012
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 comentarios
Jan
Jan el 22 de Mzo. de 2012
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
yasmine el 25 de Mzo. de 2012
i want to make a new array that contains a cerain output (double array) and has a heading USGG3M Index. accordingly, in order to concatenate (merge) these two array, they have to be double. regards

Iniciar sesión para comentar.

Categorías

Más información sobre Characters and Strings en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by