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

1 view (last 30 days)
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 Comment
Stephen23
Stephen23 on 25 Sep 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.

Sign in to comment.

Answers (1)

Walter Roberson
Walter Roberson on 25 Sep 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 Comment
Muazma Ali
Muazma Ali on 25 Sep 2022
@Walter Roberson so you are saying there is nothinh wrong with the code just that the second variable has to be string..?

Sign in to comment.

Categories

Find more on Data Type Conversion in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!