Borrar filtros
Borrar filtros

How do I plot the surface plot and surface plot based on the equation and conditions below?

1 visualización (últimos 30 días)
I am plotting a temperature distribution
1.PNG
Conditions stated are 10 < a < 20 and 5 < b < 10.
The output needs me to display surface plot and contour plots.

Respuesta aceptada

Ollie A
Ollie A el 30 de En. de 2019
a = 15;
b = 7.5;
k = 4*100/pi; % Define constants.
X = linspace(-5,5,101);
[x,y] = meshgrid(X,X); % x and y range.
n = 1:2:199;
for p = 1:length(n)
u(:,:,p) = (sin(n(p)*pi*x/a).*sinh(n(p)*pi*y/a))./(n(p)*sinh(n(p)*pi*b/a)); % Distribution over all values of n.
end
u = k.*sum(u,3);
figure(1)
surf(x,y,u) % Surface plot.
figure(2)
contour(x,y,u) % Contour plot.
This produces the surface plot and contour plot you might be looking for. I have choosen an arbitrary range for x and y, and made sure a and b satisfy the conditions you specified.
  1 comentario
Glucose Cube
Glucose Cube el 30 de En. de 2019
Hey, thanks for your help!!! May I know how do I mention peoples in Mathworks? I cant @somebody'sname like social medias. Any help would be grateful

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Contour Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by