inverse of sinc function : how to evaluate?

10 vues (au cours des 30 derniers jours)
Seetha Rama Raju Sanapala
Seetha Rama Raju Sanapala le 26 Juin 2015
Why does the following does not work in MATLAB?
solve sinc(x)==0.707
  1 commentaire
Adam
Adam le 26 Juin 2015
What doesn't work about it? Do you have the Symbolic Toolbox which contains that function?

Connectez-vous pour commenter.

Réponses (1)

Azzi Abdelmalek
Azzi Abdelmalek le 26 Juin 2015
Use this
syms x
sol=double(solve(sinc(x)==0.11))
  1 commentaire
Ignacio Druet Honrubia
Ignacio Druet Honrubia le 13 Fév 2021
Modifié(e) : Ignacio Druet Honrubia le 13 Fév 2021
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 !

Connectez-vous pour commenter.

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by