can someone help me write a program for MATLAB for cos(theta) SO FAR I HAVE: clc clear theta=0:pi:4*pi; plot(theta,cos(theta)) xlabel('theta') ylabel('cos(theta)') grid off for some reason it's display the graph not 'curve' and it's not display the x values a 0,pi,2pi,3pi,4pi... someone help please :/
for some reason it's display the graph not 'curve' and it's not display the x values a 0,pi,2pi,3pi,4pi... ^ what do you mean?
give me a sec and I'll upload the problem exactly.. it has a picture..
Write a MATLAB program that generates the following plot:(Note: you also need to label the x and y axis)
so far.. i have : clc clear theta=0:pi:4*pi; plot(theta,cos(theta)) xlabel('theta') ylabel('cos(theta)') grid off but it still doesn't look like the plot it gives and i don't know what else to do
I will try it on my machine
okay, thank you!
I see your problems , you needs more values for theta than just 4 values
how do it do that?
Try that
clc clear x = 0:pi/1000:4*pi plot(x,cos(x)) xlabel('theta') ylabel('cos(theta)') grid off
it's perfect other then the x values don't appear the same as in the picture i uploaded.. you see that?
yeah, that's what I am looking at too
try the following
clc clear x = 0:pi/1000:4*pi theta=0:pi:4*pi plot(x,cos(x)) set(gca,'XTick',0:pi:4*pi) set(gca,'XTickLabel',{'0','pi','2 pi','3 pi',' 4 pi'}) xlabel('theta') ylabel('cos(theta)') grid off
it's perfect!!! thank you! my goodness you're amazing!
welcome
Join our real-time social learning platform and learn together with your friends!