How to write a function with logical condition which takes an array and turns back an array?

조회 수: 2 (최근 30일)
What I want to acheive is the following. Let's say I have the function if and .
I have two vectors with nodes: x and y and I would like to calculate the function mentioned abose as an array. I can do it straightforwardly as
A = zeros(length(x), length(y));
for i = 1 : length(x)
for j = 1 : length(y)
if (x(i) ~= y(j))
A(i,j) = sin(alpha*(x(i) - y(j))) / (alpha * (x(i) - y(j)));
else
A(i,j) = 1;
end
end
end
This way is not really fast. I would like to have a function that will produce similar output as this cycle. More precisely, I would like to have the output in the form which is applicable for the trapz() command to calculate the double integral after all
trapz(y, trapz(x, K, 2))
there K has been calculated previously
I was trying something loke this
function val = K(alp, x, y)
% [x, y] = meshgrid(x, y); %% I was trying different variants here
% [x, y] = ndgrid(x, y);
if (x ~= y)
val = sin(alp * (x - y)) ./ ( alp * (x - y) );
else
val = 1;
end
end
but, of course, it did not work. Could you tell me, please, how shall I rewrite this function to achieve what I mentioned?

채택된 답변

Matt J
Matt J 2021년 10월 23일
K=sinc(alpha/pi*(x-y.'));
  댓글 수: 5
Matt J
Matt J 2021년 10월 23일
편집: Matt J 2021년 10월 23일
x = (1:5) / pi;
y = (3:7) / pi;
K = sin(pi * (x - y.')) ./ ( pi * (x - y.') );
K(x == y.')=1
K = 5×5
0.4546 0.8415 1.0000 0.8415 0.4546 0.0470 0.4546 0.8415 1.0000 0.8415 -0.1892 0.0470 0.4546 0.8415 1.0000 -0.1918 -0.1892 0.0470 0.4546 0.8415 -0.0466 -0.1918 -0.1892 0.0470 0.4546

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

제품


릴리스

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by