Solving trigonometric equation.
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Auchitya
el 3 de En. de 2023
Editada: KALYAN ACHARJYA
el 3 de En. de 2023
Can anyone help me with the code to solve the function for x: 3*sin(150+x)=sin(150-x)
0 comentarios
Respuesta aceptada
KALYAN ACHARJYA
el 3 de En. de 2023
Editada: KALYAN ACHARJYA
el 3 de En. de 2023
You are suggested to go through MATLAB Onramp-
Seems like homework, still I have answered. It doesn't make sense without knowing how it works.
syms x
eq=3*sin(150+x)-sin(150-x)==0;
x=vpa(solve(eq,x))
Must check the function of solve and vpa, what does symbolic variable represents?
The Matlab Help function and the online Matlab documentation are very useful for brushing up on MATLAB.
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Symbolic Math Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!