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

1 次查看(过去 30 天)
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 个评论
Stephen23
Stephen23 2022-9-25
"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.

请先登录,再进行评论。

回答(1 个)

Walter Roberson
Walter Roberson 2022-9-25
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.

类别

Help CenterFile Exchange 中查找有关 Data Type Conversion 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by