Can't plot function
5 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Filip Cupan
il 7 Dic 2019
Risposto: CHANDRA BABU GUTTIKONDA
circa 24 ore fa
>> x = linspace(0,10);
>> y = sqrt(1+x.^2)/sqrt(x.^4-x.^2+1);
>> plot(x,y)
I am new to Mathlab. When I try to plot this function y, it gives me empty figure without graph.
0 Commenti
Risposta accettata
Più risposte (1)
CHANDRA BABU GUTTIKONDA
circa 11 ore fa
x = linspace(0,10);
y = sqrt(1+x.^2)./sqrt(x.^4-x.^2+1);
plot(x,y);

0 Commenti
Vedere anche
Categorie
Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!