How to plot (x,y) subjected to any function.
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Anshuman S
el 19 de Dic. de 2017
Comentada: Walter Roberson
el 19 de Dic. de 2017
How to plot (x,y) subjected to the equation cot(y) - cot(x) = 1.
0 comentarios
Respuesta aceptada
Walter Roberson
el 19 de Dic. de 2017
fimplicit(@(x,y) cot(y)-cot(x)-1)
2 comentarios
Walter Roberson
el 19 de Dic. de 2017
No it will not. cot() is for radians. If you want degrees you should have specified cotd()
fimplicit(@(x,y) cotd(y) - cotd(x) - 1, [-720 720 -720 720])
Más respuestas (0)
Ver también
Categorías
Más información sobre Line Plots 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!