inverse of sinc function : how to evaluate?
10 ビュー (過去 30 日間)
古いコメントを表示
Why does the following does not work in MATLAB?
solve sinc(x)==0.707
1 件のコメント
Adam
2015 年 6 月 26 日
What doesn't work about it? Do you have the Symbolic Toolbox which contains that function?
回答 (1 件)
Azzi Abdelmalek
2015 年 6 月 26 日
Use this
syms x
sol=double(solve(sinc(x)==0.11))
1 件のコメント
Ignacio Druet Honrubia
2021 年 2 月 13 日
編集済み: Ignacio Druet Honrubia
2021 年 2 月 13 日
syms x
x= -vpasolve(sinc(x) == 1/sqrt(2));
Was useful for me asawell. In this case, x has both positive and negative solutions and i wanted the positive one (therefore the - sign)
I used your solution first and gave me this so thank you !
参考
カテゴリ
Help Center および File Exchange で Calculus についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!