Answered
How to accept only numbers in a edit text box?
This has already been answered. <http://www.mathworks.com/matlabcentral/answers/10665-matlab-gui-edit-text-only-allow-numbers...

14 years ago | 0

Answered
Customize a colormap
mesh(peaks) colorbar set(gca, 'CLim', [0, 1.01]) set(gcf, 'ColorMap', [0, 1, 0; repmat([1, 1, 0], 9, 1); repmat([1, 0.5,...

14 years ago | 0

Answered
Standardising errorbar whiskers
Is your xscale linear or log? get(gca, 'xscale') I have had problems with errorbar widths and log scales. If you are usi...

14 years ago | 0

Answered
Silent deploy of Matlab 2011 a
I would suggest contacting customer support at TMW directly. I was able to install r2011a silently under Linux. Are you using th...

14 years ago | 0

Answered
cellfun for objects
lhs=(cellfun(@eval,script)); I got to say that this looks like the absolute worse use of eval that I have ever seen. You sa...

14 years ago | 0

Answered
How to calculate a confidence interval using glmfit
The standard error (SE) can be used to find the range needed to achieve a confidence interval (CI). Specifically, for any CI bet...

14 years ago | 0

| accepted

Answered
transforming an m-file to an anonymous or inline function
You need to get rid of the temp variables aa and dd: aa = @(x,y,z)(h1(x,y,z)); dd = @(x,y,z)(h1(x,y,z)); fcn = @(x,y,z)([...

14 years ago | 1

| accepted

Answered
Change in subs() functionality from 2010b to 2011 a and b?
While it avoids the hard part of the question: "Otherwise, I would be better of using the old version (though my license expires...

14 years ago | 0

Answered
signal processing
I do not quite see what you are finding in that delay is the same in both cases (0): sample1 = [6.526760455502977E7 6....

14 years ago | 1

| accepted

Answered
A lot of eigenvalues
While the loop is ~20% slower on my machine then using cellfun, the answer is in a double array and not a cell array. There may ...

14 years ago | 0

Answered
GNU Octave vs. Matlab
One discriminating difference between Octave and MATLAB is the FOSS nature of Octave. Another difference is its lack of advanced...

14 years ago | 1

Answered
load syntax
.\ usually mean the current directory

14 years ago | 0

| accepted

Answered
How are method names with a dot in them accessed in classes?
While this answer is very late and I think you have found a work around for HGsetgetplus ... <http://www.mathworks.com/help/re...

14 years ago | 0

| accepted

Answered
problems calling matlab from command line in OS X
I am a Linux user and sometimes there are odd differences between Linux and Mac, but you should be able to just recreate the sym...

14 years ago | 0

| accepted

Answered
Change file extension from .wav to .res
For renaming you should be able to extrapolate from the second example at: <http://matlab.wikia.com/wiki/FAQ#How_can_I_proces...

14 years ago | 0

Answered
Retrieve Double precision Values from a database
MATLAB is most likely fetching the complete data, but providing you a truncated view. doc format you could also check do...

14 years ago | 0

| accepted

Answered
Using xcorr in pitch detections
Pitch detection is a huge field with many different algorithms each with advantages and disadvantages. How close to 120 do you n...

14 years ago | 6

| accepted

Answered
Real time sound loop playing
With standard MATLAB you cannot do this easily. Both the sound and audioplayer functions require the entire array before startin...

14 years ago | 0

| accepted

Answered
Matlab on Microsoft 2008 compute server
I am not sure what bench does with a compute server. In particular I do not know if the LU, ODE, and Sparse tests can use multip...

14 years ago | 0

| accepted

Answered
nargin
You do not need MATLAB to figure out what is going on. Just work through your code line by line with a pencil and paper. fu...

14 years ago | 0

Answered
problem with stairs plot
Is something overloading stairs? Try which -all stairs it should give something like: .../toolbox/matlab/specgraph/stair...

14 years ago | 1

Answered
What is your time zone?
Currently: GMT+0100 In the winter late fall->winter->early spring: GMT+0000

14 years ago | 0

Answered
Define a sine wave with fade in and out
What have you tried so far? Make a 1/4 period of a sine wave with a period of 20 ms. Make a 1/4 period of a sine wave with a...

14 years ago | 0

| accepted

Answered
Search through Cell
A = cell2mat(A); [row column] = find(A(:,1:3) == 0); A = mat2cell(x, N, [1, 1, 1, 1]);

14 years ago | 0

Answered
XGrid
plot([0, 0], [min(ylim), max(ylim)], 'k:');

14 years ago | 0

| accepted

Question


TMW role in Answers
I think there is a conflict of interest with so many employees of TMW answering questions on Answers. Are these employee speakin...

14 years ago | 3 answers | 0

3

answers

Question


What does Answers provide that CSSM, Stack Exchange, etc do not
Inspired, or possibly uninspired, by some of the responses to <http://www.mathworks.com/matlabcentral/answers/13927-the-future...

14 years ago | 3 answers | 2

3

answers

Answered
scripting figure position commands
You might want to look through the FEX I would recommend: <http://www.mathworks.com/matlabcentral/fileexchange/20003-panel>

14 years ago | 0

Answered
Trying to add fields to Class I am making
Have you tried clear classes The error message looks like you have loaded the class into memory and then made a change ...

14 years ago | 0

| accepted

Answered
Negatives values are ignored. Why?
If I understand boxplot correctly, it is not just plotting A, but it is also plotting errorbars and boxes. It is possible that t...

14 years ago | 0

Load more