please fix the error

2 visualizaciones (últimos 30 días)
Aisha Kohli
Aisha Kohli el 9 de Ag. de 2022
Editada: Piyush Dubey el 7 de Sept. de 2023
%Comparison of Smoking against Age & Gender
figure(8)
x = cell2mat(heart_failure(:,1));
y = cell2mat(heart_failure(:,11));
g = cell2mat(heart_failure(:,10));
gscatter(x,y,g,'rkgb','o*',8,'on','Age of patients','Smoking')
axis([20 100 -1 2])
title("Smoking Against Gender")
  1 comentario
Voss
Voss el 9 de Ag. de 2022
What is the error?

Iniciar sesión para comentar.

Respuestas (1)

Piyush Dubey
Piyush Dubey el 7 de Sept. de 2023
Editada: Piyush Dubey el 7 de Sept. de 2023
Hi Aisha,
I understand that you are trying to run a code that involves conversion of cell array to an ordinary array and while performing this operation you are facing an error.
Please know that the function cell2mat accepts only cell arrays as inputs and in the code snippet it is unclear if the returned value is of cell array datatype or not.
If the returned datatype is of any format other than cell array, then it can be converted to cell array just by a slight modification of wrapping the value in curly braces.
X = cell2mat({heart_failure(:,1)})
Please refer to the following MathWorks documentation link for more information on “cell2mat” method:
Hope this helps.

Categorías

Más información sobre Logical 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