how to plot this function with figure
Mostra commenti meno recenti
In the same figure, plot:1) sin(x), x+1, x3-3, in the rank -2 to 3.14
2)Plot x=8×cos(t),y=4√(sin(t)),z=-4√(sin(t)) ,t= [0,2π]
3)z=(sin√(x^2+y^2 ))/√(x^2+y^2 )
4 Commenti
Adam Danz
il 9 Giu 2020
If you have a specific question about a small part of your assignment many volunteers would he happy to help. But you've got to do your own assignment.
marwan alamah
il 9 Giu 2020
Modificato: Adam Danz
il 9 Giu 2020
David Hill
il 9 Giu 2020
You likely want to break x into a larger array.
x=-2:.01:3.18;
You can plot all at once with one plot command
plot(x,y,x,z,x,m);
Adam Danz
il 9 Giu 2020
In addition to David's advice, you'll also need to apply the math in your question, of course. Those functions should be pretty easy to identify.
Risposte (0)
Categorie
Scopri di più su Creating, Deleting, and Querying Graphics Objects in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!