Question: Create a matlab function that solves the following equation: y = ax + bx + c Your matlab function should: Takes coefficients a, b,and c

Create a matlab function that solves the following equation: y = ax + bx + c Your matlab function should: Takes coefficients a, b,and c and a vector x (in this order) as inputs. Output y as calculated by the equation. Call this function QuadraticEgn. Function C Reset DO MATLAB Documentation 1 function (outputs] = YourFunctionName( inputs) 3 4 5 end Code to call your function C Reset 1 y = QuadraticEqn(1,2,3,[1 2 3])
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
