Normalized Sinc using matrix inputs
古いコメントを表示
My code is to use the formula sinc(x) = sin(x*pi)/(x*pi) to return a matrix of the same size as the input, and when dealing with a element equal to zero, it is to return a value of one.
function y = normsinc(vec)
y = sin(vec)*pi ./ (vec*pi);
This is what I have right now, but it can't use if statement to check the values of the input. I get the same size output as the input but for zeros I get NaN.
2 件のコメント
Jan
2022 年 4 月 5 日
" but it can't use if statement to check the values of the input." - why not?
Eric Brown
2022 年 4 月 5 日
回答 (1 件)
Jan
2022 年 4 月 5 日
What about appending:
y(isnan(y)) = 1;
カテゴリ
ヘルプ センター および File Exchange で Develop Apps Using App Designer についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!