I have data point which fits the line y=mx+c ? How can I write code for this?
20 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I have data point which fits the line y=mx+c ? How can I write code for this?
0 comentarios
Respuestas (2)
sixwwwwww
el 7 de Dic. de 2013
write as follow
x = 0:100;
m = 3;
c = 4;
y = m * x + c;
plot(x, y)
7 comentarios
sixwwwwww
el 7 de Dic. de 2013
The problem is that in order to plot the equation you need to have 3 known values and one unknown value because there 4 values in equation x, y, m and c. So you should atleast have three values or if you just plot some random values of x and y and then want to find m and c then using cftool is the best option
chitresh
el 7 de Dic. de 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 comentarios
Image Analyst
el 15 de Dic. de 2013
And officially Accept answers in more than 30 other questions that you've asked.
Ver también
Categorías
Más información sobre Interpolation en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!