Question: What is the correct syntax for plotting the function b2+b*(3b+2) for b from -10 to 10 (function should be on y-axis) b=-10:1:10; y= b^2+b*(3.*b+2); plot(b,y)
What is the correct syntax for plotting the function b2+b*(3b+2) for b from -10 to 10 (function should be on y-axis) b=-10:1:10; y= b^2+b*(3.*b+2); plot(b,y) b=-10:1:10; y=b^2+b*(3.*b+2); plot(y,b) b=-10:1:10; y= b.^2+b.*(3*b+2); plot(b,y) b=-10:1:10; plot(b^2+b*(3b+2),b)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
