

Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
This assignment was given by Shambhu Jaishree at Dhirubhai Ambani Institute of Information and Communication Technology. Its related to Signal and Systems course. Its main points are: Length, Numerical, Order, Determinant, Addition, If, Variable, For, Loop
Typology: Exercises
1 / 2
This page cannot be seen from the preview
Don't miss anything!


clear clc a=[1 2 3; 4 5 6;7 8 9]; for x=1:1:length(a) for y=1:1:length(a) if a(x)==a(y) b(x,y)=1; else b(x,y)=a(x,y); end end end b clear clc a=[5 4 ;2 1]; b=[9 7 ;3 2 ]; z=a+b; p=det(z); y=det(a); u=det(b); o=u+y;
z p o