controlling array data when calculating
古いコメントを表示
im try to avoiding having a w = 0. how do i code this?
a = 10;
w = -a:(a/1000):a
F = 2*sin(a*w)./w;
採用された回答
その他の回答 (2 件)
Azzi Abdelmalek
2013 年 9 月 8 日
編集済み: Azzi Abdelmalek
2013 年 9 月 8 日
a = 10;
w = -a:a/1000:a;
F = 2*sin(a*w)./w;
tol=0.01
idx=find(abs(F)<tol)
[w(idx)' F(idx)']
Roger Stafford
2013 年 9 月 8 日
w = -a:(a/1000.5):a;
カテゴリ
ヘルプ センター および File Exchange で Resizing and Reshaping Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!