Symbolic integration of cell arrays
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
EldaEbrithil
le 15 Oct 2020
Commenté : EldaEbrithil
le 15 Oct 2020
Hi all
is it possible to perform symbolic integration of cell arrays? P is a cell array where each element is the function that need to be integrated
I guess it's something like that but i am not sure:
syms x
for i=1:length(P)
Q{i}=int(P{i},x);
end
Thank you for the help
Regards
0 commentaires
Réponse acceptée
Walter Roberson
le 15 Oct 2020
It is not possible to directly perform symbolic integration of cell arrays.
You can use the code you posted, or you can use
Q = cellfun(@(p) int(p,x), P, 'uniform', 0);
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Symbolic Math Toolbox dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!