Author Archives: shparvez001
CSE 432 Fall 2019 Lab 8
Task #1 Importing audio into MATLAB Audio can be imported into MATLAB using audioread()or wavread()functions. The example below shows importing a sound and plotting it. clear close all clc [y,… Read more »
CSE 432 Fall 2019 Lab 7
Task 1 More Symbolic Algebra %Lab 7 Task 1 close all; clear; clc; syms x y; %y=x^2+5*x+6; figure fplot(‘x^2+5*x+6’,[-50 50]) figure ezpolar(‘cos(x)’) figure ezpolar(‘2+cos(x)’) figure ezpolar(‘sin(x)+cos(x)’) figure ezplot(‘cos(x)’) Task 2… Read more »
CSE 432 Fall 2019 Lab 6
Task 1 Symbolic Algebra in Matlab Solving Single Variable Equation Solving Multi Variable Equation Solving Simultaneous Equation Using roots and polyval function Using expand function to expand algebraic expression Using… Read more »
CSE 432 Fall 2019 Lab 5
Task 1 Complex Numbers in matlab %Lab 5 Task 1 close all clear clc j=sqrt(-1); x=5+3j; y=6-2j; z=x+2*y; %Decomposing the real and imaginary part of a complex number disp(real(z)); disp(imag(z));… Read more »
Fall 2019 CSE 431 Tutorial 1 Solution
****The solution is a rough copy. There may be some errors.****
CSE 121 Fall 2019 Tutorial 1 Solution
****The solution is a rough copy. There may be some errors.****
CSE 121 Tutorial 1 Mark Fall 2019
Section A Reg Name Test 1 190103020001 Syed Md. Afsani 6 190103020005 Nadira Ferdous 4 190103020007 Biprojit Bhattacharjee 4 190103020009 Maidul Islam 4 190103020011 Marwanur Rashid Shafe 4 190103020015 Jeni… Read more »
CSE 431 Tutorial 1 Marks Fall 2019
Reg Name Test 1 160203020006 Naziza Islam Shaon 3.5 160203020015 Adib Shikder A 160303020001 Mohammad Shamimur Rahman 3 160303020002 Tayef Ahmed 1.5 160303020004 Hamiduzzaman Noyon 9 160303020005 Md. Musaddikur Rahman… Read more »
CSE 432 Fall 2019 Lab 4
Task 1 Generation of unit impulse function. close all clear clc fs=10; a=1; t=-5:1/fs:5; impl=zeros(1,length(t)); for i=1:length(t) if t(i)==0 impl(i)=a; end end figure plot(t,impl) ylim([0 2]) figure stem(t,impl) Task 2… Read more »