Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

I want to plot the below equation in matlab but i dont know how to plot

1 vue (au cours des 30 derniers jours)
Burak Gün
Burak Gün le 28 Mai 2020
Clôturé : MATLAB Answer Bot le 20 Août 2021
Thank you.

Réponses (1)

KSSV
KSSV le 28 Mai 2020
Modifié(e) : KSSV le 28 Mai 2020
Let the range of (x,y) be from 0 to 1 .
m = 100 ; n = 100 ;
x = linspace(0,1,m) ;
y = linspace(0,1,n) ;
[X,Y] = meshgrid(x,y) ;
Z = X.^3.*Y.^3.*exp((X.^4-Y.^4).^5) ;
surf(X,Y,Z)
shading interp ;
colorbar

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by