Why am I not getting output in the combinations of salts field?

1 visualización (últimos 30 días)
Muazma Ali
Muazma Ali el 25 de Sept. de 2022
Comentada: Muazma Ali el 25 de Sept. de 2022
Hi ! :)
I am attaching a shorter version of my program. Here all the variables get values as input whereas in my program I have functions to give these variables values.
When I run my program I get the following error:
'' Conversion to double from cell is not possible''
and the error is related to this line:
Osmotisk_data(nr_zones_analyzed,:)={nr_zones_analyzed, combinations_of_salts, vekt_prosent_best_salt_1,vekt_prosent_best_salt_2, samlet_vannaktivitet,Osmotic_pressure}
And when I run the attached file, the combinations of salts field stays empty.. and doesnt get any value..
can somebody tell me what wrong I have done in my programming of my code..?
  1 comentario
Stephen23
Stephen23 el 25 de Sept. de 2022
"can somebody tell me what wrong I have done in my programming of my code..?"
The array OSMOTISK_DATA is apparently double type, and you are trying to assign a cell array to it.
It is not possible to assign a cell array to a double.

Iniciar sesión para comentar.

Respuestas (1)

Walter Roberson
Walter Roberson el 25 de Sept. de 2022
You assign string into C and copy that to combination of salts, and then put that as the second entry in the cell. The cell gets assigned as a table row, so the data type of each position in the cell must match the data type of the corresponding column by position (not by variable name.) But the second variable is double, according to vartypes.
  1 comentario
Muazma Ali
Muazma Ali el 25 de Sept. de 2022
@Walter Roberson so you are saying there is nothinh wrong with the code just that the second variable has to be string..?

Iniciar sesión para comentar.

Categorías

Más información sobre Data Type Conversion 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