I have data point which fits the line y=mx+c ? How can I write code for this?
84 views (last 30 days)
Show older comments
I have data point which fits the line y=mx+c ? How can I write code for this?
0 Comments
Answers (2)
sixwwwwww
on 7 Dec 2013
write as follow
x = 0:100;
m = 3;
c = 4;
y = m * x + c;
plot(x, y)
7 Comments
chitresh
on 7 Dec 2013
>>syms x y m c
>> solve(' y = m * x + c')
i think this gone solve your question, if it is solved accept the answer
4 Comments
Image Analyst
on 15 Dec 2013
And officially Accept answers in more than 30 other questions that you've asked.
See Also
Categories
Find more on Get Started with Curve Fitting Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!