Update a vector using equation of a line
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Do you have any idea how to update a vector using equation of a straight line X = [380 250 220 200] Update vector X using X = Cx + b and plot the results
0 Kommentare
Antworten (1)
David Hill
am 13 Aug. 2020
y=C*x+b;%assuming you have C and b defined as constants
plot(x,y);%assume you want to plot x vs y
0 Kommentare
Siehe auch
Kategorien
Mehr zu Labels and Styling finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!