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

casi 15 años hace | 0

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

casi 15 años hace | 0

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

casi 15 años hace | 0

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

casi 15 años hace | 0

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

casi 15 años hace | 0

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

casi 15 años hace | 0

| aceptada

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

casi 15 años hace | 1

| aceptada

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

casi 15 años hace | 0

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

casi 15 años hace | 1

| aceptada

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

casi 15 años hace | 0

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

casi 15 años hace | 1

Respondida
load syntax
.\ usually mean the current directory

casi 15 años hace | 0

| aceptada

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

casi 15 años hace | 0

| aceptada

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

casi 15 años hace | 0

| aceptada

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

casi 15 años hace | 0

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

casi 15 años hace | 0

| aceptada

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

casi 15 años hace | 6

| aceptada

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

casi 15 años hace | 0

| aceptada

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

casi 15 años hace | 0

| aceptada

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

casi 15 años hace | 0

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

casi 15 años hace | 1

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

casi 15 años hace | 0

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

casi 15 años hace | 0

| aceptada

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

casi 15 años hace | 0

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

casi 15 años hace | 0

| aceptada

Pregunta


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

casi 15 años hace | 3 respuestas | 0

3

respuestas

Pregunta


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

casi 15 años hace | 3 respuestas | 2

3

respuestas

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

casi 15 años hace | 0

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

casi 15 años hace | 0

| aceptada

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

casi 15 años hace | 0

Cargar más