mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 16:43:12 +02:00
6 lines
109 B
Matlab
6 lines
109 B
Matlab
function[sum] = sumRest(L1,i,j)
|
|
sum=0;
|
|
for k = 1:1:i-1
|
|
sum=sum+(L1(j,k)*L1(i,k));
|
|
end
|
|
end |