Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

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

1 visualización (últimos 30 días)
Burak Gün
Burak Gün el 28 de Mayo de 2020
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
Thank you.

Respuestas (1)

KSSV
KSSV el 28 de Mayo de 2020
Editada: KSSV el 28 de Mayo de 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

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by