How to take and integral of a matrix

25 vues (au cours des 30 derniers jours)
Antonio Belmaggio
Antonio Belmaggio le 29 Mai 2020
Commenté : Ameer Hamza le 31 Mai 2020
Hi
I got this matrix 2x1 that i have to integrate, matrix's elements are constants and I have to integrate in two finite values (0 and 12).
I am using the command integral(fun,0,12) but it keeps giving me errors like : First input argument must be a function handle.
Or when I use int(fun,0,12) it gives me another error : Undefined function 'int' for input arguments of type 'double'.
this time i als tried to put int ('fun',0,12) but it gives me this: Undefined function 'int' for input arguments of type 'char'.
Can anyone help?

Réponses (1)

Ameer Hamza
Ameer Hamza le 29 Mai 2020
Modifié(e) : Ameer Hamza le 29 Mai 2020
You can integrate a constant matrix by simply multiplying it with the length of the interval.
M = [1 2];
M_int = M*(12-0)
However, if you want to use integral() the following shows the correct syntax
M = [1 2];
fun = @(x) M;
integral(fun, 0, 12, 'ArrayValued', 1)
  2 commentaires
Antonio Belmaggio
Antonio Belmaggio le 30 Mai 2020
Thank you, it now works!
Ameer Hamza
Ameer Hamza le 31 Mai 2020
I am glad to be of help!

Connectez-vous pour commenter.

Catégories

En savoir plus sur Numerical Integration and Differentiation 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!

Translated by