Hi I want to plot a graph of Z=sin (x) cos(y) , y<3 and x>-3 but I'm unsure on how to code the range. Any help is much appreciated !
14 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I understand that we usually assign a numerical value when assigning the range for x and y but I'm just unsure of how to process when it's x less than a certain value vs when x is equal or less than a value ( which I know how to do). Sorry if the explaination is confusing, I'm still new to matlab
0 Commenti
Risposte (1)
Star Strider
il 25 Gen 2018
Try this:
z = @(x,y) sin(x).*cos(y) .* ((x>-3) & (y<3));
[X,Y] = meshgrid(-5:0.5:5);
figure(1)
surf(X, Y, z(X,Y))
xlabel('\bfX')
ylabel('\bfY')
grid on
0 Commenti
Vedere anche
Categorie
Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!