How can i plot the graph from the 3 variables equation ?

2 visualizaciones (últimos 30 días)
siwakorn phakdee
siwakorn phakdee el 14 de Mzo. de 2023
Comentada: siwakorn phakdee el 14 de Mzo. de 2023
I have the 3 variables eqaution, for example X = A(B+25)
Where A = 0:500:2000 and B = 0:1:100
How can I get all of the answers of X variable and plot the graph of the X, A, and B variables ?

Respuesta aceptada

VBBV
VBBV el 14 de Mzo. de 2023
A = 0:500:2000;
B = 0:1:100;
[AA BB] = meshgrid(A,B);
X = AA.*(BB+25);
surf(AA,BB,X)
xlabel A
ylabel B
zlabel X

Más respuestas (0)

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by