Features (variable) ranking/selection

5 views (last 30 days)
Hello,
I am working on a mood detection from audio files algorithm and I need to compare results in variables (scalar) then display an answer based on that comparison.
For example: if variable1 = 1 and (variable2 = 1 or variable2 = 2) then display 'x'.
The problem is each variable has a different weight when I am displaying the results (i.e. variable1 weighs 40% and variable2 weighs 50%).
Is there any way to do this using any MATLAB functions?
I've turned the Internet upside down looking for an answer but couldn't find anything that would help me.
Thank you in advance for your help!
Kind regards,
Mihnea
  2 Comments
Jan
Jan on 12 Apr 2014
Edited: Jan on 12 Apr 2014
It is not clear how the weights are connected to your question. What does it mean for the IF-statement, that variable2 has a weight of 50% (by the way, 50% of what?)?
Do you have a fair application for this program? Or is it thought to support the NSA to detect phone calls of angry European persons?
Mihnea
Mihnea on 12 Apr 2014
Edited: Mihnea on 12 Apr 2014
There are five variables (dynamics, tempo, pitch, keymode and timbre) each with a different importance when it comes to finding the mood of a song.
It is supposed to contribute towards understanding how features of an audio signal influence actual music (tempo, pitch, etc.). It is a final year project.
The if statement part is stupid but I couldn't explain it any other way.

Sign in to comment.

Accepted Answer

Image Analyst
Image Analyst on 12 Apr 2014
As you can see by now, you're making yourself clear and no one knows what you mean. I just thought I'd add my guess to the mix. Create a weighted value, then threshold it.
value = weight1 * dynamics + ...
weight2 * tempo + ...
weight3 * pitch + ...
weight4 * keymode + ...
weight5 * timbre;
if value > someThreshold
% Do something.
else
% Do something else.
end
  1 Comment
Mihnea
Mihnea on 12 Apr 2014
Thank you, will try it this way!
Have a nice evening, Mihnea

Sign in to comment.

More Answers (2)

Jos (10584)
Jos (10584) on 12 Apr 2014
What do you exactly mean "the variable has a weight"?
  1 Comment
Mihnea
Mihnea on 12 Apr 2014
Each makes up a certain percentage from the final answer e.g.:
var1 is 40%
var2 is 25%
var3 is 15%
var4 and var5 are 10%

Sign in to comment.


Mihnea
Mihnea on 12 Apr 2014
No one, no idea?

Categories

Find more on Introduction to Installation and Licensing in Help Center and File Exchange

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!