Subscript indices must either be real positive integers or logicals.

조회 수: 1 (최근 30일)
Yintong Zheng
Yintong Zheng 2016년 2월 27일
답변: Image Analyst 2016년 2월 27일
function T=baryeval2(tau,s,c,belta,x)
u=zeros(size(x))
d=zeros(size(x))
T=zeros(size(x))
for k=1:5
u=u+s(k).*belta(k).*(x-tau(k)).^(-1);
d=d+c(k).*belta(k).*(x-tau(k)).^(-1);
end
T=u./d;
end

답변 (4개)

Azzi Abdelmalek
Azzi Abdelmalek 2016년 2월 27일
편집: Azzi Abdelmalek 2016년 2월 27일
You cant use an index equal to zero, Matlab allows only positive integer indices, or logical indices
  댓글 수: 4
Yintong Zheng
Yintong Zheng 2016년 2월 27일
I changed my code and now I get answers. But apparently something is wrong! Please help me to fix it.
Yintong Zheng
Yintong Zheng 2016년 2월 27일
I insert all the values of tau, s, c, belta at command window. And all those '-Inf' are what I got.

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


the cyclist
the cyclist 2016년 2월 27일
MATLAB has 1-based indexing. When you enter
tau(k)
for k = 0, there is no such element.

Walter Roberson
Walter Roberson 2016년 2월 27일
You have, in part, (x-tau(k)).^(-1) . If there is any x equal to tau(k) then the subtraction would give 0 and raising that to power -1 would give infinity. Infinity times any non-zero value gives infinity (infinity times 0 gives nan), so you would be adding infinity to the value, resulting in infinity. And then since you are effectively totaling values, you are going to get an infinite result.
  댓글 수: 2
Yintong Zheng
Yintong Zheng 2016년 2월 27일
can you advice me how to fix this?
Walter Roberson
Walter Roberson 2016년 2월 27일
If you do have an x equal to some tau, then inf or nan is the correct answer for the formulae you have written. The situation is exactly like asking to total 1/x when x is allowed to be 0.

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


Image Analyst
Image Analyst 2016년 2월 27일

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by