create matrix with integral

조회 수: 3 (최근 30일)
Mohammed Hachemi
Mohammed Hachemi 2019년 9월 15일
답변: Mohammed Hachemi 2019년 9월 15일
Hello
I need your help , I am beginner in matlab and want to use matlab to calculate integral and create matrix with variable n and m.
x = [-1,1]
∫ (f(x,n)*f(x,m)dx
I want to creat matrix
f(x,1)*(f(x,1) f(x,1)*(f(x,2) .....
f(x,2)*(f(x,1) f(x,1)*(f(x,1)
.
.
I try this code but I need your help to create one
P = 5; exemple
fun(1) =@(x)(1-x)/2;
fun(2) =@(x)(1+x)/2;
fun(n) =@(x) sin(pi/2*(n-1).*(1+x)); if n >= 2;
for m = 1:P;
for n = 1:P;
L[n,m]=integral((fun(m).*fun(n)),-1,1,-1,1);
end
end

채택된 답변

Walter Roberson
Walter Roberson 2019년 9월 15일
P = 5;
for m = 1:P;
for n = 1:P;
L(n,m) = integral( @(x) fun(x,n).*fun(x,n)), -1, 1);
end
end
function y = fun(x, n)
%warning: x will be a vector or array!
if n == 1
y = (1-x)/2;
elseif n == 2
y = (1+x)/2;
else
y = sin(pi/2*(n-1).*(1+x));
end

추가 답변 (1개)

Mohammed Hachemi
Mohammed Hachemi 2019년 9월 15일
Thank you for your answer but it doesn't work.

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by