Answered
License files from the FEX
You could download each FEX submission to a separate folder and then create links (hard or symbolic) to the MATLAB files (m, p, ...

13 years ago | 1

| accepted

Question


MESSAGE function and error handling
I just stumbled across the MESSAGE function which takes a message identifier of the form foo:bar:id and creates an objec...

13 years ago | 2 answers | 2

2

answers

Answered
Answers not visible
Have you tried clicking on "My Questions"?

13 years ago | 3

Answered
subclassing MException
There are a lot of places you can go wrong, and without the code, it is hard to guess... classdef testclass < MException ...

13 years ago | 4

Answered
audioplayer function: clicks during playback of sine waves
The analog output of a sample and hold system to a sine wave input is a sine wave multiplied by a pulse train convolved with a r...

13 years ago | 0

| accepted

Answered
audioplayer function: clicks during playback of sine waves
That is because MATLAB sound support is essentially broken. Look for some of the answer on the site referring to port audio. ...

13 years ago | 0

Answered
sound card
Most soundcards have reasonable crosstalk attenuation. SOUND and SOUNDSC turn mono signals into stereo signals. If you only want...

13 years ago | 0

Answered
soundsc
The reason you cannot cancel the sound with crtl+c is that MATLAB plays the sound asynchronously. This means you can do other th...

13 years ago | 0

| accepted

Question


MATLAB Stack Exchange
What do people think of the <http://area51.stackexchange.com/proposals/38040/matlab#_=_ MATLAB Stack Exchange> proposal?

13 years ago | 2 answers | 3

2

answers

Answered
Declaring global handle or variable
This is <http://matlab.wikia.com/wiki/FAQ#How_can_I_share_data_between_callback_functions_in_my_GUI.28s.29.3F FAQ: 5.16>

13 years ago | 0

Answered
How to call functions indirectly?
You can do it with only additions to your code F1 = @(a)length(a); F2 = @(b)sum(b); F3 = @(c)min(c); X=rand(1,...

13 years ago | 1

| accepted

Answered
wav format data type in matlab
You should read the documentation to WAVREAD doc wavread You want [Y,...]=WAVREAD(...,'native')

13 years ago | 0

Answered
(continued)On the combination of N-dim vector.
I think this question is the same: http://www.mathworks.com/matlabcentral/answers/38130-pick-arrays-from-matrix-with-condition

13 years ago | 0

| accepted

Answered
(Ask again)Show every combination of N-dim vector.
I think <http://www.mathworks.com/matlabcentral/fileexchange/10064-allcomb> might do it also.

13 years ago | 1

Answered
(Ask again)Show every combination of N-dim vector.
I will repeat the answer I gave to your original question x = fullfact([3,3,3])-1 *EDIT* For a general N N = 3; ...

13 years ago | 3

| accepted

Answered
how to write code to try every combination of N-dim vector?
x = fullfact([3,3,3])-1

13 years ago | 1

Answered
strfind on gpu
The STRFIND function is fast to find the occurrences of a sequence. The problem is that you are calling it for all possible sequ...

13 years ago | 0

| accepted

Answered
Optimizing the 'drawnow' function for an oscillating circle
To get the graphics really good you need to access the graphics card directly. Toolboxes like <http://gru.brain.riken.jp/doku.ph...

13 years ago | 0

| accepted

Answered
strfind on gpu
Based on your comment "the string is Diff of prices....so are all in decimals...eg 0.0012 0.0001 -0.0002 etc" I would point out ...

13 years ago | 0

Answered
correlation matrix labels
names = {'one', 'two', 'three'}; middle = {' vs '}; N = length(names); reshape(strcat({names{repmat(1:N, N, 1)}}, mid...

13 years ago | 0

| accepted

Answered
How to change firs GUI's figure properties from another GUI
This is essentially <matlab.wikia.com/wiki/FAQ#How_can_I_share_data_between_callback_functions_in_my_GUI.28s.29.3F FAQ: 5.16>

13 years ago | 0

Answered
Can I use 2 MATLAB versions ..??
Yes. You should contact technical support if you are having problems with installation.

13 years ago | 1

Answered
command in Matlab equivalent to "forall " in fortran
The JIT accelerator that was introduced 10 years ago has sped up loops substantially, it is an unfortunate myth that MATLAB loop...

13 years ago | 1

| accepted

Answered
Order of execution of multiple onCleanup callbacks
While I believe the ordering is stable and either first defined or last defined (I cannot remember), I don't think you want to d...

13 years ago | 0

| accepted

Answered
Select all entries in first N-1 dimensions of array
Have you thought about using linear indexing? V{1} = rand([2,2,2]); x = reshape(V{1}(1:4), repmat(2, 1, 2)); y = V{1}...

13 years ago | 0

| accepted

Answered
Scheduling a Matlab Script
You need to enclose the entire command in quotes. You do not need the path on the function/script you want to run and do not wan...

13 years ago | 1

| accepted

Answered
get function
It is similar to close all in that it makes all the figure windows disappear. It is different in some fundamental ways t...

13 years ago | 0

Answered
Tidal prediction
The concept of the first 20 frequencies doesn't make sense. The frequencies to which the first 20 components correspond depends ...

13 years ago | 0

Answered
execution of code very long
Have you tried to profile your code to figure out where the bottleneck is? If comp is really big, you might be able to get a lit...

13 years ago | 0

Answered
pitch detection by autocorrelaion
This has been asked <http://www.mathworks.com/matlabcentral/answers/14133-using-xcorr-in-pitch-detections before>.

13 years ago | 0

Load more