can any one explain this line of the code.

조회 수: 1 (최근 30일)
sadiqa ilyas
sadiqa ilyas 2019년 10월 11일
댓글: sadiqa ilyas 2019년 10월 12일
Data=[-1 -0.5 1 2; -4 -3 2 3];
m=2.5; % slope is kept constant
c=-10:0.1:10; % different values for intercept c to plot the cost
Cost=zeros(1,length(c));
for i=1:length(c)
Cost(i)=(1/4)*sum( (Data(2,:)'-(m*Data(1,:)'+c(i))).^2);
end
The line in side for loop.
Data(2,:)=[ -4,-3 2 3]'
m*Data(1,:)=2.5*[-1 -0.5 1 2]'
c(1)=-10
How can we add m*Data(1,:)+(-10)

채택된 답변

Bob Thompson
Bob Thompson 2019년 10월 11일
Per matrix math rules, when you add a single value to a matrix, that operation is applied to all values of the matrix individually.
>> Data(1,:)
-1 -0.5 1 2
>> m*Data(1,:)
-2.5 -1.25 2.5 5
>> m*Data(1,:)
-12.5 -11.25 -7.5 -5

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by