I just want to compare two sound waves with Matlab. If anyone know about this, please help me with any function regarding this in matlab

link|improve this question
This is too vague. In what way do you want to compare them? – Oli Charlesworth Nov 12 '11 at 11:23
In any respect.i just want to ensure that two sound waves are same... – soni Nov 12 '11 at 12:06
feedback

closed as not a real question by Oli Charlesworth, cpx, yoda, George Stocker, BalusC Nov 13 '11 at 5:57

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

Use wavread function in matlab to read sound files (http://www.mathworks.com/help/techdoc/ref/wavread.html)

Once you have two sound files as vectors in matlab you can use the isequal function to compare if they are identical.

Given that you are unsure they are equal, it is likely that they won't be. You can use various methods of comparison but you haven't provided enough information.

link|improve this answer
I just want to add that testing the equality of the two sound waves will almost always give a negative result (except if one of the sound wave is a duplicate of the other). Even if the same signal is recorded by two separate speaker of the same model, it is likely that there will be small differences that will result in a negative result to this test. So as mentionned by Oli Charlesworth and Greg G. you probably should be a little more specific about the context. – Aabaz Nov 12 '11 at 14:35
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.