sayfee
Junior Member level 1
f=[1 2 3 4];
c=[1 2 3 4 ; 5 6 7 8; 9 10 11 12; 13 14 15 16];
bb(1,1)=f(1)*c(1,1)*0+f(1)*c(1,2)*1+f(1)*c(1,3)*2+f(1)*c(1,4)*3;
bb(1,2)=f(2)*c(1,1)*0+f(2)*c(1,2)*1+f(2)*c(1,3)*2+f(2)*c(1,4)*3;
bb(1,3)=f(3)*c(1,1)*0+f(3)*c(1,2)*1+f(3)*c(1,3)*2+f(3)*c(1,4)*3;
bb(1,4)=f(4)*c(1,1)*0+f(4)*c(1,2)*1+f(4)*c(1,3)*2+f(4)*c(1,4)*3;
bb(2,1)=f(1)*c(2,1)*0+f(1)*c(2,2)*1+f(1)*c(2,3)*2+f(1)*c(2,4)*3;
bb(2,2)=f(2)*c(2,1)*0+f(2)*c(2,2)*1+f(2)*c(2,3)*2+f(2)*c(2,4)*3;
bb(2,3)=f(3)*c(2,1)*0+f(3)*c(2,2)*1+f(3)*c(2,3)*2+f(3)*c(2,4)*3;
bb(2,4)=f(4)*c(2,1)*0+f(4)*c(2,2)*1+f(4)*c(2,3)*2+f(4)*c(2,4)*3;
bb(3,1)=f(1)*c(3,1)*0+f(1)*c(3,2)*1+f(1)*c(3,3)*2+f(1)*c(3,4)*3;
bb(3,2)=f(2)*c(3,1)*0+f(2)*c(3,2)*1+f(2)*c(3,3)*2+f(2)*c(3,4)*3;
bb(3,3)=f(3)*c(3,1)*0+f(3)*c(3,2)*1+f(3)*c(3,3)*2+f(3)*c(3,4)*3;
bb(3,4)=f(4)*c(3,1)*0+f(4)*c(3,2)*1+f(4)*c(3,3)*2+f(4)*c(3,4)*3;
bb(4,1)=f(1)*c(4,1)*0+f(1)*c(4,2)*1+f(1)*c(4,3)*2+f(1)*c(4,4)*3;
bb(4,2)=f(2)*c(4,1)*0+f(2)*c(4,2)*1+f(2)*c(4,3)*2+f(2)*c(4,4)*3;
bb(4,3)=f(3)*c(4,1)*0+f(3)*c(4,2)*1+f(3)*c(4,3)*2+f(3)*c(4,4)*3;
bb(4,4)=f(4)*c(4,1)*0+f(4)*c(4,2)*1+f(4)*c(4,3)*2+f(4)*c(4,4)*3;
bb
here bb is 4*4 matrix i want all the result in this matrix
and i want to do this using for loop but cant do it...can anybody help me plzzz :-(
c=[1 2 3 4 ; 5 6 7 8; 9 10 11 12; 13 14 15 16];
bb(1,1)=f(1)*c(1,1)*0+f(1)*c(1,2)*1+f(1)*c(1,3)*2+f(1)*c(1,4)*3;
bb(1,2)=f(2)*c(1,1)*0+f(2)*c(1,2)*1+f(2)*c(1,3)*2+f(2)*c(1,4)*3;
bb(1,3)=f(3)*c(1,1)*0+f(3)*c(1,2)*1+f(3)*c(1,3)*2+f(3)*c(1,4)*3;
bb(1,4)=f(4)*c(1,1)*0+f(4)*c(1,2)*1+f(4)*c(1,3)*2+f(4)*c(1,4)*3;
bb(2,1)=f(1)*c(2,1)*0+f(1)*c(2,2)*1+f(1)*c(2,3)*2+f(1)*c(2,4)*3;
bb(2,2)=f(2)*c(2,1)*0+f(2)*c(2,2)*1+f(2)*c(2,3)*2+f(2)*c(2,4)*3;
bb(2,3)=f(3)*c(2,1)*0+f(3)*c(2,2)*1+f(3)*c(2,3)*2+f(3)*c(2,4)*3;
bb(2,4)=f(4)*c(2,1)*0+f(4)*c(2,2)*1+f(4)*c(2,3)*2+f(4)*c(2,4)*3;
bb(3,1)=f(1)*c(3,1)*0+f(1)*c(3,2)*1+f(1)*c(3,3)*2+f(1)*c(3,4)*3;
bb(3,2)=f(2)*c(3,1)*0+f(2)*c(3,2)*1+f(2)*c(3,3)*2+f(2)*c(3,4)*3;
bb(3,3)=f(3)*c(3,1)*0+f(3)*c(3,2)*1+f(3)*c(3,3)*2+f(3)*c(3,4)*3;
bb(3,4)=f(4)*c(3,1)*0+f(4)*c(3,2)*1+f(4)*c(3,3)*2+f(4)*c(3,4)*3;
bb(4,1)=f(1)*c(4,1)*0+f(1)*c(4,2)*1+f(1)*c(4,3)*2+f(1)*c(4,4)*3;
bb(4,2)=f(2)*c(4,1)*0+f(2)*c(4,2)*1+f(2)*c(4,3)*2+f(2)*c(4,4)*3;
bb(4,3)=f(3)*c(4,1)*0+f(3)*c(4,2)*1+f(3)*c(4,3)*2+f(3)*c(4,4)*3;
bb(4,4)=f(4)*c(4,1)*0+f(4)*c(4,2)*1+f(4)*c(4,3)*2+f(4)*c(4,4)*3;
bb
here bb is 4*4 matrix i want all the result in this matrix
and i want to do this using for loop but cant do it...can anybody help me plzzz :-(