Conversion to cell from double is not possible

146 Ansichten (letzte 30 Tage)
Tolulope Abiola
Tolulope Abiola am 16 Aug. 2019
I am trying to do some column calculations in MATLAB Gui columns. Like 2*pi*column1 gives column 3... So I used the code
dataC = get(handles.uitable1, 'Data'); dataC(:,3) = cell2mat(dataC(:,1)) * pi * 2;
Ans this gives error of conversion to cell from double is not possible in reference to the last line of the code.

Akzeptierte Antwort

Stephen23
Stephen23 am 16 Aug. 2019
Bearbeitet: Stephen23 am 16 Aug. 2019
A = cell2mat(dataC(:,1));
B = A * pi * 2;
dataC(:,3) = num2cell(B); % <- you need NUM2CELL!
  6 Kommentare
Stephen23
Stephen23 am 25 Aug. 2019
@Tolulope Abiola: either make sure that the uitable column is numeric, or convert to numeric after obtaining the data from the uitable.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Migrate GUIDE Apps finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by