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

más de 14 años hace | 0

Respondida
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...

más de 14 años hace | 0

Respondida
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 "...

más de 14 años hace | 0

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

más de 14 años hace | 0

| aceptada

Respondida
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...

más de 14 años hace | 0

Respondida
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...

más de 14 años hace | 0

Respondida
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...

más de 14 años hace | 0

Respondida
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 ...

más de 14 años hace | 1

| aceptada

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

más de 14 años hace | 0

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

más de 14 años hace | 0

Respondida
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...

más de 14 años hace | 7

Respondida
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.

más de 14 años hace | 1

Respondida
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)

más de 14 años hace | 0

Respondida
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...

más de 14 años hace | 1

| aceptada

Respondida
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 ...

más de 14 años hace | 0

Respondida
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 ...

más de 14 años hace | 1

Respondida
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 ...

más de 14 años hace | 0

Respondida
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 ...

más de 14 años hace | 0

| aceptada

Respondida
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 ...

más de 14 años hace | 3

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

más de 14 años hace | 0

Respondida
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...

más de 14 años hace | 0

Respondida
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 ...

más de 14 años hace | 1

Respondida
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...

más de 14 años hace | 0

| aceptada

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

más de 14 años hace | 2

Respondida
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) ...

más de 14 años hace | 0

Respondida
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 ...

más de 14 años hace | 0

| aceptada

Respondida
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...

más de 14 años hace | 0

| aceptada

Respondida
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...

más de 14 años hace | 0

Respondida
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...

más de 14 años hace | 0

Respondida
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...

más de 14 años hace | 0

Cargar más