Determinants-Signal and Systems-Assignment Solution(Matlab Code), Exercises of Signals and Systems Theory

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

2011/2012

Uploaded on 07/14/2012

kapor
kapor 🇮🇳

4

(1)

37 documents

1 / 2

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
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;
docsity.com
pf2

Partial preview of the text

Download Determinants-Signal and Systems-Assignment Solution(Matlab Code) and more Exercises Signals and Systems Theory in PDF only on Docsity!

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;

docsity.com

z p o

docsity.com