how can i draw graph of z^2=x^2-y^2 on matlab
6 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Risposta accettata
Star Strider
il 12 Feb 2017
Is this what you want:
f = @(x,y) (x.^2 - y.^2).^2; % Your Function
x = linspace(-10, 10, 150); % X-Range
y = linspace(-10, 10, 150); % Y-Range
[X,Y] = meshgrid(x,y); % Create Matrix Arguments
figure(1)
sh = surf(X, Y, f(X,Y));
set(sh, 'EdgeColor','none')
grid on
6 Commenti
Più risposte (2)
Salwa Aqeel
il 7 Ott 2019
Modificato: Walter Roberson
il 8 Ott 2019
dydt=-y(1)+1
y(0)=0
3 Commenti
Walter Roberson
il 10 Mar 2020
MATLAB uses exp() to express e^
Also MATLAB does not have any implied multiplication such as between the x and the (x^2 etc
Vedere anche
Categorie
Scopri di più su Creating, Deleting, and Querying Graphics Objects in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!