A répondu
what does this error mean?
Just type : which -all adpmedian I guess this function is not on your path. You will get the same error by typing: ...

environ 12 ans il y a | 2

A répondu
GUI help - Possible to have somethings grayed out until needed
You must use *enable* property of uicontrols.

environ 12 ans il y a | 6

A répondu
MATLAB won't launch in Ubuntu 11.10
Do you have the libc.so.6 error? If yes: <http://www.mathworks.com.au/support/solutions/en/data/1-F68FSA/index.html?solution=1...

environ 12 ans il y a | 0

A répondu
making checkboxes in uitable mutually exclusive
You need to perform this task by using the property CellEditCallback (callback when data in a cell is changed)

environ 12 ans il y a | 1

| A accepté

A répondu
How to search for Max and Min value?
Let's call your example toto.txt: You can write : fid = fopen('toto.txt','r') A = textscan(fid,'%f %f %f %f %f %f',...

environ 12 ans il y a | 2

| A accepté

A répondu
How to plot a single point depending on three variables in a 2d figure?
doc plotyy

plus de 12 ans il y a | 2

A répondu
How to arrange rows in uitable?
To start : Answer 1: [sorted,d]=sort(penalty); newMatrix= A(d,:); Answer 2: parentA= newMatrix(1:2,:); ...

plus de 12 ans il y a | 1

| A accepté

A répondu
Function to find if B is an echelon or row equivalent of A
Let's say B has the same second row of A : >>A = [1 2 3; 4 5 6; 7 8 9]; >>B = [ 4 5 6;10 11 12]; You could use ism...

plus de 12 ans il y a | 1

A répondu
How to speed up calculations?
You have made a lot of things already about hardware enhancement like setting the 3GB Switch. You should use the *profiler* of M...

plus de 12 ans il y a | 1

| A accepté

A répondu
error when call fun.
Just add initSwarm.m in your MATLAB path and it will work.

plus de 12 ans il y a | 1

| A accepté

A répondu
How do I change the Matlab Desktop font preferences using commands?
To display MATLAB on a screen for a public , I run this function : function largefonts(state) % LARGEFONTS ON Turn o...

plus de 12 ans il y a | 3

A répondu
3D directivity plot, TriScatterInterp
What about switching method as explained in the doc: <http://www.mathworks.fr/help/techdoc/math/bsou4rj-1.html#bsphz74-1 Interp...

plus de 12 ans il y a | 0

A répondu
Date on X-axis when zooming the plot
You could try this submission : <http://www.mathworks.com/matlabcentral/fileexchange/27075-intelligent-dynamic-date-ticks Intel...

plus de 12 ans il y a | 3

| A accepté

A répondu
Dynamically plot graphs
The examples given in this technical note should help you: <http://www.mathworks.fr/support/solutions/en/data/1-AFS2H2/index.htm...

plus de 12 ans il y a | 0

A répondu
Copy and rename Excel files from Matlab
1. >>doc copyfile 2. >>doc movefile See also: <http://www.mathworks.fr/support/solutions/en/data/1-716EAM/index.html...

plus de 12 ans il y a | 1

| A accepté

A répondu
finding the distance between elements of a vector
A=[0 0 0 3 0 0 2 0 -3 0 5 0 -2 0 0 3 0 0 0 0 2 0 -5]; result = [find(A==2)- find(A==3)] will return : result = ...

plus de 12 ans il y a | 0

A répondu
How can I create Standalone execute file from MATLAB GUI code
You say "it is just working well on my PC. " Did you install MCR on the other machines? See these steps: <http://www.mathwor...

plus de 12 ans il y a | 0

A répondu
code for plotting more than one histogram in MATLAB
subplot should achieve what you want : x = -4:0.1:4; y = randn(1000,2); figure subplot(2,1,1) hist(y(:,1),x) ...

plus de 12 ans il y a | 2

A répondu
Can I install Matlab 7.12 (2011a) on Ubuntu 11.04
Even if it is not officially supported under 11a (it is under current <http://www.mathworks.fr/support/sysreq/current_release/li...

plus de 12 ans il y a | 3

| A accepté

A répondu
32 bit Vs 64 bit matlab
The technical solution that you mention is still true in R2011a , R2011b. You can also verify this in this link: <http://www.ma...

plus de 12 ans il y a | 1

A répondu
How to run exe file with inputs
To answer at the title of your question : <http://www.mathworks.fr/support/solutions/en/data/1-18448/index.html?solution=1-1844...

plus de 12 ans il y a | 1

A répondu
problem while recording by the command 'getframe', without showing figure
See this guide : <http://www.mathworks.fr/support/tech-notes/1200/1204.html#Section%2010 Section 10: How Do I Create an AVI Movi...

plus de 12 ans il y a | 0

| A accepté

A répondu
greek letters in a static text (GUI)
The workaround : <http://www.mathworks.fr/support/solutions/en/data/1-1VE03X/index.html?solution=1-1VE03X How can I write Greek...

plus de 12 ans il y a | 1

A répondu
Contour Algorithm
The <http://www.mathworks.fr/help/techdoc/creating_plots/f10-2524.html?#f10-2614 Contouring Algorithm> is explained in the doc ...

plus de 12 ans il y a | 0

A répondu
What version of MATLAB do you code against
I ensure my codes work from R2007b to the current release. R2007b is just because some end-users are still working under Window...

plus de 12 ans il y a | 2

A répondu
Proportional GUI
As Yair suggests in his <http://undocumentedmatlab.com/blog/minimize-maximize-figure-window/ comment June 7, 2011 at 1:47 am> tr...

plus de 12 ans il y a | 0

A répondu
VPlot understanding
Renaming your script 'a.m' should fix the issue. <http://www.mathworks.fr/support/solutions/en/data/1-18IIZ/index.html?solution...

plus de 12 ans il y a | 2

A répondu
Proportional GUI
You may also try these P-codes : <http://www.mathworks.fr/support/solutions/en/data/1-3MY8PN/index.html?solution=1-3MY8PN Is it...

plus de 12 ans il y a | 0

A répondu
Proportional GUI
One possible solution: jFrame = get(handle(gcf),'JavaFrame'); jFrame.setMaximized(true); The official TMW Tech note: <http...

plus de 12 ans il y a | 1

A répondu
A4 figure ready to print
Using the *papersize* property of your figure shoud achieve what you you wish: <http://www.mathworks.fr/help/techdoc/creating_p...

plus de 12 ans il y a | 0

Charger plus