Azzera filtri
Azzera filtri

how to drw line y=m*x+b?

1 visualizzazione (ultimi 30 giorni)
Darshan Patel
Darshan Patel il 3 Apr 2016
Risposto: Kuifeng il 3 Apr 2016
i am having values
m=0.00914
x=641.4
b=17.1317
how to draw line with this poins I have done this code for it but this is not solution
function line(x,m,b)
y=m*x+b;
plot(x,y);
end

Risposte (1)

Kuifeng
Kuifeng il 3 Apr 2016
Maybe try m=0.00914; x0=641.4; b=17.1317; ezplot('0.00914*x+17.1317', [0 1000]) hold on, plot(x0, m*x0+b,'ro') axis tight

Categorie

Scopri di più su Interactive Control and Callbacks in Help Center e File Exchange

Tag

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by