moreonwavez
Figured I do some more matlab here, it's out of the context of what we've been looking at, but it should be a fun time!
Here's a bit of an exercise on signal processing, in particular this exercise comes straight from Matlab Resource Center on Time Frequency Analysis.
It starts by telling you about a DTMF, which is a signal that is composed by two tones, so by being dual, and at the end of this exercise you gets to see why it actually has two notes on it.
With this helperGenerator, we create a tones vector,
where the sampling rate Fs is not given,
you can play the audio from the tone vector and start thinking what else could you do with this.
You can start by pseudocoding on that as in writing the ideas you want to be carrying from the left to the right sides of what you are righting in the matlab script .m.
Before we diverge, let's make sure we get this file right. Wish I could be recording this screen, but my means are meager.
The main idea of this exercise /problems /problem:
is that you generate three digits as if they were from a phone dial, they have sounds that are captured by the audio player, eventually, we take that sound and we are capable of making two different plots with it.
1. An Amplitude by Time or that typical most likely sine/cosine like wave like type of graph.
To plot the amplitude of the signal by time, you need to create a time vector, beforwe you do, you count the number of tones, or spaces that will need to represent time.
Your amount of time is then calculated from 0 to N-1 and then this value is divided by the smapling rate Fs that is somehow automatically in the code.
In this, is where one main idea in Structural Engineering / Structures lies in.
The idea of members and nodes.
A lot of advanced Mechanical Engineering classes will cover topics in Finite Element Methods, for Finite Analysis, along with Numerical Methods, through advanced mathematics that cover much of what you learn through your life, and will rely on this same idea.
Where in plotting a graph, you must define points along that axis, and the remaining question is,
how should you partition it?
There is the space where you fill stuff in, as in the members, and there are the nodes, which is like supporting parts. /workondisthought
I don't understand what the idea of numel means, I'm going to guess that it makes a vector of length of the vector tones.
The length of the vector, is as many spaces it has containing information of some sort.
In this case frequencies that are related to three digits being typed on a phone dial.
What is a subplot?
I don't know.
Let's search.
Wish I could record this live, but oh, well.
[Imagine an N by M array of little graphs on your figure. Those are the rows and columns. The third arg is the number of the plot starting at 1 in the upper left, going across the top row to M, then down a row and across again, then so on down row by row until the last plot, the (N*M)th, is at the lower right. For example for a 3 by 4 array of plots you'd do
subplot(3, 4, plotNumber);
Where plotNumber follows this pattern:
1 2 3 4
5 6 7 8
9 10 11 12
I think I know why this is like this.
The figure you see above shows two different plots,
So I'm imagining that the top is for the amplitude-time plot,
and the bottom one is for the power-frequency plot?
its a guess, maybe we are correct... let's see:
Alright so whats up with the main plot?
Whats with that plot(le3*t?
Can't find the answer now... but I'm thinking about the whole time vector, and the way of setting up.
Back when I've done some other codes in other stuff, I've used it that way.
How did I know that?
I've got NO FUCKING IDEA.
so I'm going to guess 1e3 may refer to the lines below plot for properties that are related to it? or why would it be multiplying by time though???
what does the function actually say?
Dont realluy know but found some other material that may be more of a starter than this file...
will finish with what we have here though... because I've read it once... and later I'll verify.
fine, except that then, I create subplot 2... and then define pspectrum /add info
which has something called a leakage... and a value for frequency limits, which is a way of zooming into the graph, based on what we know we are capturing.
The phone dials has only frequencies between 650 and 1500 Hz.
So I believe what this function does is get the vector for tones,
At the moment I've added a pause there because before wihtout it those plots weren't popping up, but the next one was....
so lets see what do we do now.
We create something created an envelope.
An algorithm that takes two vectors (objects?) tones and the value of 80, why? I dont know, and says, this is rms...
than pulsewidth(env, Fs) of envelope and associated that to the frames Fs... alright, now we basically created a plot and another plot... and two new vectors....
so we give a title to the thing, and maybe missing the note for a third subplot...
then we create the vector of frequencies to be a mean of tones within specified ranges... somehow i knew abuot this and often am thinking how exactly to partition, not sure if just by going between 100s within the values we've had already specified is enough... where are the outliers? below and under? and what exactly are you rounding f to?
Then we do pspectrum again, of the same values that we had initially, except now we introduce the word spectrogram, and add a few other parameters, that may help clear out the image by deleting certain values from the plot... like anything that is under 10 decibels... how much wattage woud that be? How much is the volume, or power, or speed that sound is in our heads daily that could be called background noise? Something around 70 db?
It also add another parameter for Overlap... and I have no idea why, and then let's see what do we get from running this script without the pause...
So running it, its not showing a graph that I know exists in between the first and the last...
This next photo & post about the last
/TFA /STRUCTURES /WAVES
Comments
Post a Comment
Thoughts?