Array indices must be positive integers or logical values.ERROR

1 回表示 (過去 30 日間)
Shahd Altalhi
Shahd Altalhi 2019 年 11 月 12 日
回答済み: David Hill 2019 年 11 月 12 日
for d=0:5:50
Pl=40*log(d)-(10*log(gt)+10*log(gr_s)+20*log(ht)+20*log(hr));
Rss= pt+gt+gr_s-L50-L;
SNIR= Rss/n+I;
c=B*log(1+SNIR);
throuput1=(c(B*log(1+SNIR)));
end

回答 (2 件)

Walter Roberson
Walter Roberson 2019 年 11 月 12 日
c(B*log(1+SNIR)) is a request to index the variable c at the computed value. MATLAB does not have any implicit multiplication: if you want multiplication you need the * or .* operator.

David Hill
David Hill 2019 年 11 月 12 日
throuput1=(c*(B*log(1+SNIR)));%I think you left out a * (c*...) otherwise you are trying to index into c
Also, log(0) will be -inf. Do you want to start out at d=0?

カテゴリ

Help Center および File ExchangeTime Series Collections についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by