inverse of sinc function : how to evaluate?

14 次查看(过去 30 天)
Why does the following does not work in MATLAB?
solve sinc(x)==0.707
  1 个评论
Adam
Adam 2015-6-26
What doesn't work about it? Do you have the Symbolic Toolbox which contains that function?

请先登录,再进行评论。

回答(1 个)

Azzi Abdelmalek
Azzi Abdelmalek 2015-6-26
Use this
syms x
sol=double(solve(sinc(x)==0.11))
  1 个评论
Ignacio Druet Honrubia
编辑: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 CenterFile Exchange 中查找有关 Calculus 的更多信息

标签

产品

Community Treasure Hunt

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

Start Hunting!

Translated by