Update a vector using equation of a line
조회 수: 1 (최근 30일)
이전 댓글 표시
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
답변 (1개)
David Hill
2020년 8월 13일
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
참고 항목
카테고리
Help Center 및 File Exchange에서 Surface and Mesh Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!