Skip to Main Content Skip to Search
Login
File Exchange
MATLAB Newsgroup
Link Exchange
  Blogs  
 Contest 
MathWorks.com

Thread Subject: Matlab Speech Recognition Problem..Urgent Help Required

Subject: Matlab Speech Recognition Problem..Urgent Help Required

From: KK

Date: 15 May, 2008 22:17:57

Message: 1 of 2

Hello Everyone

m working on a speech recognition software on ,matlab..

the whole code is working properly i can add the file to the database
can record it from microphone, but when m trying to match it with
another file it gives an error of kinda MEMORY overflow, i hv 1 gb RAM
i tried using the clear and pack commands but no use

can anyone help me on this

plz its quite urgent


Thanks in anticipation


Kartikeya

Subject: Matlab Speech Recognition Problem..Urgent Help Required

From: Nomee

Date: 15 May, 2008 22:43:56

Message: 2 of 2

Let us know how big (in bytes) is your single file.
What method you are using to match
If its simple to implement it in chunks then break down the file in
parts and run matching code on each chunk and store result.

In fact there are lot of effecient ways to do this task but it all
depends on how much data you need for matching at a time.
Another question is that is your data double or uint8 or can it be
saved in another structure.

>> a=double([1,1]);
>> b=uint8([1,1]);
>> c=boolean([1,1]);
>> whos a b c
  Name Size Bytes Class Attributes

  a 1x2 16 double
  b 1x2 2 uint8
  c 1x2 2 logical

Look at the bytes double take and look at the bytes for uint8. Hope
you will find a solution.

Tags for this Thread

Add a New Tag:

Separated by commas
Ex.: root locus, bode

What are tags?

A tag is like a keyword or category label associated with each thread. Tags make it easier for you to find threads of interest.

Anyone can tag a thread. Tags are public and visible to everyone.

rssFeed for this Thread

envelope graphic E-mail this page to a colleague

Public Submission Policy
NOTICE: Any content you submit to MATLAB Central, including personal information, is not subject to the protections which may be afforded information collected under other sections of The MathWorks, Inc. Web site. You are entirely responsible for all content that you upload, post, e-mail, transmit or otherwise make available via MATLAB Central. The MathWorks does not control the content posted by visitors to MATLAB Central and, does not guarantee the accuracy, integrity, or quality of such content. Under no circumstances will The MathWorks be liable in any way for any content not authored by The MathWorks, or any loss or damage of any kind incurred as a result of the use of any content posted, e-mailed, transmitted or otherwise made available via MATLAB Central. Read the complete Disclaimer prior to use.
Related Topics