Question
For computer assignment 1 in MATLAB you will be looking at different methods to compress audio signals. To help you start with this assignment you
For computer assignment 1 in MATLAB you will be looking at different methods to compress audio signals. To help you start with this assignment you should create 3 variables: 1) block_time - set this equal to 50 milliseconds, but convert to seconds 2) n_samples_per_block - this is how many samples MATLAB must store for each block Hint: it depends on fs and block time; may want to use dimensional analysis to make sure it is in units of samples. 3) t - this is the time vector. It has fs samples/second and the last entry is equal to block time. Hint: the first entry is non-zero
load('audio_1_method_1_no_overlap.mat'); %loads in the file with A; freqs; and fs ONLY fs is used for this problem
block_time = 50*.001
n_samples_per_block = %fill in
in t = %fill in
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started