Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

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

1 visualizzazione (ultimi 30 giorni)
Thank you.

Risposte (1)

KSSV
KSSV il 28 Mag 2020
Modificato: KSSV il 28 Mag 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

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by