Conversion to char from logical is not possible.
Afficher commentaires plus anciens
Hi,
I am trying to solve the following integral with MATLAB_R2019b.
I= @(x)((x.^(3).*exp(-x))/(x.^(3)+D(i))), ['ArrayValued';true];
L = integral(I,0,Inf);
but I get the following error:
I =
function_handle with value:
@(x)((x.^(3).*exp(-x))/(x.^(3)+D(i)))
Error using vertcat
The following error occurred converting from logical to char:
Conversion to char from logical is not possible.
Error in untitled3 (line 6)
I= @(x)((x.^(3).*exp(-x))/(x.^(3)+D(i))), ['ArrayValued';true];
Can someone help? Thank you.
2 commentaires
Rik
le 29 Mar 2020
It looks like ['ArrayValued';true] is executed separately from the rest. It is also unclear to me what this code is supposed to be doing.
Ludovico Iannizzotto
le 29 Mar 2020
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur MATLAB dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!