How to take and integral of a matrix

372 views (last 30 days)
Antonio Belmaggio
Antonio Belmaggio on 29 May 2020
Commented: Ameer Hamza on 31 May 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?

Answers (1)

Ameer Hamza
Ameer Hamza on 29 May 2020
Edited: Ameer Hamza on 29 May 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)

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!