Answered
wavwrite warnings
This has been answered and discussed before: <http://www.mathworks.com/matlabcentral/answers/17789-why-i-am-gettiing-warning>

14 years ago | 0

Answered
read a folder that is currently copied to computer
So many things ... There are other ways, but I am not sure if they are easier. I would suggest writing a function which embed...

14 years ago | 0

Answered
Long Division
In your first comment to Walter, you wrote "and the process is repeated until an answer is obtained." That sounds a lot like a "...

14 years ago | 0

Answered
Matlab 2012a
A more general answer might be: TMW generally does not announce the release date prior to the release. According to wikipedia...

14 years ago | 0

| accepted

Answered
quit doesn't quit the matlab when called from a loop.
I think Sean de gives the reason for your problem. As for a work around, I can think of a bunch of ways and it is really what yo...

14 years ago | 0

Answered
Overriding "get"-able properties.
I think you can either # change the property foo to be a method, which can then be overloaded, or # you can overload subsre...

14 years ago | 0

Answered
Array of objects - speed issues
This is a well known problem with the OO system in MATLAB and unfortunately there is no simple solution. <http://stackoverflo...

14 years ago | 0

Answered
script sh to run a matlab program
I would change the script to be: /full/path/to/matlab/binary/matlab -nodesktop -r my_prog Note that the .m extension is ...

14 years ago | 1

| accepted

Answered
could u plz provide me with a code for isolated speech recognition?
You might want to read up on cross correlation.

14 years ago | 0

Answered
Real-time data exchange
On Windows you can control and exchange data from one MATLAB session to another with activex.

14 years ago | 0

Answered
font size changes in figures
As this has surfaced again, I will dig my answer out of the comment I made to Ken. So while I had no problem on Debian and Ub...

14 years ago | 7

Answered
Close my terminal but keep matlab running on a remote Ubuntu
I use screen. I am pretty sure this is exactly what it was designed for.

14 years ago | 1

Answered
how to plot multiple discrete values in stem plot using line segment
What about something like: errorbar(x, i+diff([i;p])/2, diff([i;p])/2, diff([i;p])/2)

14 years ago | 0

Answered
Object destructor not running when listeners are involved
You are getting caught up in the undocumented and proprietary aspects of MATLAB garbage collection. The thing to note is that th...

14 years ago | 1

| accepted

Answered
error initial state defaulting to 1
There is something wrong with what you have. It makes no sense for you function to take T, S0 and n as inputs only to overwrite ...

14 years ago | 0

Answered
Contributors metainfo: reputation and more
I am not sure but I don't think Andrei, Kaustubha, or IA got their props for making it to editor. Congratulations to Sean de ...

14 years ago | 1

Answered
execution of external program fails
There is something wrong with the path when you run system. MATLAB doesn't use the same path as the Windows command window. You ...

14 years ago | 0

Answered
Error: Subscript indices must either be real positive integers or logicals.
Look at the error and then look at your code. Basically you have cur_state = round([0.4 0.6]); which is the same as ...

14 years ago | 0

| accepted

Answered
call functions from subpath
I am posting this as a new answer because I think it is long enough, but it is based on a comment to my previous answer. If ...

14 years ago | 3

Answered
call functions from subpath
You may want to look at doc genpath For example addpath(genpath('/libs/latexfigure/')); might fix your problems....

14 years ago | 0

Answered
Run two functions on two cores .. in a dual core processor..
Yes, you can run two independent functions on independent cores. The easiest way is probably to start to sessions of MATLAB. See...

14 years ago | 0

Answered
Run two functions in parallel
If the only communication between the two functions is via the triggering you could try running two MATLAB sessions. If you are ...

14 years ago | 1

Answered
butterworth filter, does not work selectively
From the first error it seems you have the correct butter and zp2ss functions on the path. The error occurs on line 134 of zp2ss...

14 years ago | 0

| accepted

Answered
Display Text Without Formatting
What about corrupting the string with spaces and backspaces ... str = '<a href="test">TEST</a>'; showstr = @(str)([sprin...

14 years ago | 2

Answered
How to speed up the plot?
IT smells like homework to me ... I hope I am wrong. Can you see how this might help. cnt = cnt+1; if ~rem(cnt, 4) ...

14 years ago | 0

Answered
Newbie problem... No idea what is wrong with this, and I swear it was working earlier with exact same code :|
A simple fix is to define "a" as global in the base workspace (along with all your other globals. Better would be to read up on ...

14 years ago | 0

| accepted

Answered
TimerFcn within GUI function to another GUI function
I would do things a little differently ... Make your timer object when you make your gui. If you do it at this point, all the...

14 years ago | 0

| accepted

Answered
Get information of property type of object properties (i.e. 'dependent')
Isn't the current behavior of your subfunction what isequal does? Why not overload isequal for your class? Presumably in the con...

14 years ago | 0

Answered
Simultaneous Video and Audio Acquisition
You really need to specify what you mean by "simultaneous". It would surprise me if you could get below 100 ms latency, which is...

14 years ago | 0

Answered
wav files and pitch shift (Signal Processing)
Start with the first part of the problem and work your way from there. The first step is to mathematically represent a contin...

14 years ago | 0

Load more