inverse of sinc function : how to evaluate?
11 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Seetha Rama Raju Sanapala
el 26 de Jun. de 2015
Editada: Ignacio Druet Honrubia
el 13 de Feb. de 2021
Why does the following does not work in MATLAB?
solve sinc(x)==0.707
1 comentario
Adam
el 26 de Jun. de 2015
What doesn't work about it? Do you have the Symbolic Toolbox which contains that function?
Respuestas (1)
Azzi Abdelmalek
el 26 de Jun. de 2015
Use this
syms x
sol=double(solve(sinc(x)==0.11))
1 comentario
Ignacio Druet Honrubia
el 13 de Feb. de 2021
Editada: Ignacio Druet Honrubia
el 13 de Feb. de 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 !
Ver también
Categorías
Más información sobre Calculus en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!