Plot the function on graph
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
y = sqrt(9x + b) forina-2, b = 3 (i1) a = 3 , b = 2 (m) * a = 2 , b = 2 over the interval [0,5]
0 Kommentare
Antworten (2)
Sam Chak
am 7 Feb. 2025
Look up the documentation plot(). There are plenty of simple examples that you can learn to plot it yourself.
0 Kommentare
Star Strider
am 7 Feb. 2025
I have n o idea what ‘forina’ refers to, however the rest is straightforward —
b = 2;
y = @(x) sqrt(9*x + b);
figure
fplot(y, [0 5])
grid
.
0 Kommentare
Siehe auch
Kategorien
Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!