Réponse apportée
How to disable beep (beep off does not work)?
I believe BEEP OFF turns off the beep when there is an error. Partial parenthesis are not an error (although if you run code wit...

plus de 11 ans il y a | 0

Réponse apportée
Vector where elements equals previous elements + 1
Using end is a bad choice since it is special in MATLAB. I think what you are asking for is a:b

plus de 11 ans il y a | 3

Réponse apportée
can u tell how to create this type of vector ?
For your simplified question X(i)={x(1,i),x(2,i),x(3,i)........x(D,i)} lets let i equal 1 and D equal 5, x(1,1) equal to...

plus de 11 ans il y a | 0

Réponse apportée
Why Matlab does not show the special characters (e.g.: 'ç' or º)
You may want to see this <http://www.mathworks.com/matlabcentral/answers/83114-print-latex-greek-chars-to-commandline question>....

plus de 11 ans il y a | 0

Réponse apportée
Properties of user defined classes cannot be seen in variable editor. why? Please look at the picture.
This is a reoccurring problem/request. See my previous <http://www.mathworks.com/matlabcentral/answers/45496#answer_56857 answer...

plus de 11 ans il y a | 0

Question


Documentation of changes to sound.m
Comparing |sound.m| in R2010a and R2013a shows that they have very few similarities. The work in R2010a is done by the PLAYSND m...

plus de 11 ans il y a | 1 réponse | 0

0

réponse

Réponse apportée
Matlab Freezes after playing tone couple of times.
The standard MATLAB sound commands have overhead associated with stopping and starting the soundcard so you cannot do what you a...

plus de 11 ans il y a | 0

Réponse apportée
Is it possible to attach to a running matlab process?
Assuming you are using Linux and want to attach over ssh (or something similar) you should look at the answers to this <http://w...

plus de 11 ans il y a | 0

Réponse apportée
Confused about dB in MATLAB
Depends what you mean by full scale, but yes. As for what could cause a 6 dB reduction in input to give a 10 dB reduction in out...

plus de 11 ans il y a | 0

| A accepté

Question


MATLAB Platform dependency documentation
I generally think of MATLAB as being platform independent apart from a few will documented toolboxes (both official and unoffici...

plus de 11 ans il y a | 1 réponse | 0

1

réponse

Réponse apportée
opengl functions in matlab
You can do this with either <http://docs.psychtoolbox.org/PsychOpenGL psychtoolbox> or <http://gru.brain.riken.jp/doku.php/mgl/o...

plus de 11 ans il y a | 1

Réponse apportée
Vectorising cell array operations
Blindly removing loops for speed is an antiquated view of MATLAB based on the performance of versions over 10 years old prior to...

plus de 11 ans il y a | 1

Réponse apportée
Problems with text in figures
I am guessing this is related to: <http://www.mathworks.com/matlabcentral/answers/1238-font-size-changes-in-figures> Do you h...

plus de 11 ans il y a | 0

Réponse apportée
cant play audio file
The |LOAD| function cannot load wav files try |WAVREAD| instead.

plus de 11 ans il y a | 1

Réponse apportée
Correlation coefficent for vectors (of unequal lengths).
First make some dummy data A = 1:10; A(2) = nan; B = 1:10; B(4)=nan; Then combine the arrays into a matrix so i...

plus de 11 ans il y a | 1

| A accepté

Réponse apportée
Print Latex/Greek-Chars to Commandline
Yes and no. The commandline does not have a LaTeX interpreter so so you cannot pass it LaTeX code. The commandline does handle H...

plus de 11 ans il y a | 1

Réponse apportée
Events Listening, Callback functions
You might be able to hack it, but I am not sure that you need to ... Why not just have |callback1| call a |hello_response| me...

plus de 11 ans il y a | 0

| A accepté

Réponse apportée
Wrong code. Does not get into the while loop.
When |k| is equal to 2, |s| is equal to 2 and |n| is equal to 0. If |UntitledVoltage(2)| is not between 15 and 26, then you skip...

plus de 11 ans il y a | 0

| A accepté

Réponse apportée
Repeat Try/Catch loop?
You could do something like function varargout = myfunc(varargin) try thingThatSometimesCrashes; catch ...

plus de 11 ans il y a | 3

Réponse apportée
help required using colormap function in matlab
It is not clear what you are trying to do. In the simplest case you might be trying to do Z = 7*rand(61,98)+26.5; C = nd...

plus de 11 ans il y a | 0

| A accepté

Réponse apportée
Why does Microsoft Outlook not like MATLAB's .MAT files?
Microsoft considers the MAT extenstion to be a Microsoft Access Table Shortcut. This file type can contain scripts and code and ...

plus de 11 ans il y a | 0

Réponse apportée
automatic Matlab to run each 10 min
You could do while true myfunc; pause(10*60); end

plus de 11 ans il y a | 1

Réponse apportée
What is the prefered OS for Matlab 2012a
You may want to take a look at the system requirement <https://www.mathworks.co.uk/support/sysreq/roadmap.html roadmap>, althoug...

plus de 11 ans il y a | 0

Question


Does 1.*2 call times or mtimes?
Following on from Jan's question about <http://www.mathworks.com/matlabcentral/answers/77274-puzzling-syntax-2-4-6-8-10-12 puzzl...

plus de 11 ans il y a | 2 réponses | 4

2

réponses

Question


MATLAB .deb or .rpm based installer
I am curious why there is no .deb or .rpm based installer for MATLAB. It seems the way TMW handles the software downloads it wou...

plus de 11 ans il y a | 1 réponse | 2

0

réponse

Réponse apportée
hello ,Any tool boxes are available for HRTF ?
The <http://interface.cipic.ucdavis.edu/data/doc/show_data_manual.pdf CIPIC> and <http://recherche.ircam.fr/equipes/salles/liste...

plus de 11 ans il y a | 0

Réponse apportée
set latters in a string to different fontsizes with interpreter latex
Presumably by "doesn't work" you mean there is not a difference in the font size. The reason there is no difference in the font ...

plus de 11 ans il y a | 5

| A accepté

Réponse apportée
Using regexp to capture parts of a filename
Depending on how structured your file names are, it might be easier to skip the regexp part. file = 'Exp000_DD2CM000_PN0...

plus de 11 ans il y a | 0

Réponse apportée
how to check if there are any elements are equal in a vector
There is no built in function that will do that. You could test the number of unique elements in the vector against the length o...

plus de 11 ans il y a | 0

Réponse apportée
Basic opeation in matlab
In this case the |'| is a shorthand way of calling the |ctranspose| function. You may also want to look at |.'| which is shortha...

plus de 11 ans il y a | 0

Charger plus