Info

This question is closed. Reopen it to edit or answer.

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

1 view (last 30 days)
Thank you.

Answers (1)

KSSV
KSSV on 28 May 2020
Edited: KSSV on 28 May 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!