Respondida
the arrow.m does not work any more in matlab 2014b version.
It looks like it is treating a graphics handle as a double precision number. It looks like they are pre-allocating a variable...

más de 9 años hace | 0

Respondida
R2014b, where'd 'TitleHandle' go? uipanel
This undocumented feature has been removed in r2013b. You can access the title when you have the handle to the uipanel. Howeve...

más de 9 años hace | 0

Respondida
How do I move the legend box closer to the plot-edge? 2014b puts the legend box too far into the plot.
You have control over the position of the figure, and thus its size. Everything that I did for this particular figure could be ...

más de 9 años hace | 0

Respondida
How do I move the legend box closer to the plot-edge? 2014b puts the legend box too far into the plot.
I think I see why this looks different for both of us! My normal workflow is to use screenshots so I was posting what I saw on ...

más de 9 años hace | 0

Respondida
How do I move the legend box closer to the plot-edge? 2014b puts the legend box too far into the plot.
Now we see why this is important. It is not possible to change the margin padding (either the external or internal), but it is ...

más de 9 años hace | 0

Respondida
How do I move the legend box closer to the plot-edge? 2014b puts the legend box too far into the plot.
<</matlabcentral/answers/uploaded_files/19173/legendTwice.png>> I ran this code in both versions. Am I missing something? ...

más de 9 años hace | 0

Respondida
Line smoothing in MATLAB2014b
Without knowing what card you have installed, it is hard to answer this. In general, the newer drivers are going to be better. ...

más de 9 años hace | 0

Respondida
MATLAB in unexpected places
The is a MATLAB box in the background in the movie Contact when Elie runs in after hearing first message.

más de 9 años hace | 0

Respondida
Find n random points with a minimum distance r inside a 2D rectangular box
Here is something stupid that just might work. While NOT_DONE generate a point If NOT too close to existing point...

casi 10 años hace | 2

Respondida
Is it possible to add symbols to push button?
http://www.mathworks.com/matlabcentral/answers/45634-how-to-put-a-picture-on-a-button-in-a-gui h = uicontrol set(h,'cd...

casi 10 años hace | 1

Respondida
What algorithm does the function convhull use?
It is not clear if you are just trying to site the algorithm you used. http://www.walkingrandomly.com/?p=4767 This shows h...

alrededor de 10 años hace | 0

| aceptada

Respondida
How to ignore one repeated value in a data set ?
d = [1 2 999 4 5 7 999 8 9] d(d == 999) = nan; plot(d,'o-')

alrededor de 10 años hace | 1

Respondida
how to crop an image
im = imread('pout.tif') [r,c] = size(im) per = 0.1 left = round(per*c); right = c-left; top = round(per*r); ...

alrededor de 10 años hace | 0

Respondida
how to send a text message
Have you tried sending an e-mail as an alternative? MATLAB can do that too.

alrededor de 10 años hace | 1

Respondida
Get the facecolor of a contourf plot
[X,Y,Z] = peaks; [l, h] = contourf(X,Y,Z,4) hp = get(h,'children') get(hp,'cdata') colorbar This gets you the v...

alrededor de 10 años hace | 0

Respondida
Final verification URL needed as currently blocked by firewall
Please call install support.

alrededor de 10 años hace | 0

Respondida
If I have a equation, suppose x.^2+y.^3-10 ; if I put the values of x and y randomly, Can I find the zeroes of this equation at certain values of x and y ? for example x=3 and y=1, there is zero.
ezplot('x^2 + y^3 - 10') <</matlabcentral/answers/uploaded_files/9320/ez.jpg>>

alrededor de 10 años hace | 1

| aceptada

Respondida
How to send an sms
This might help http://www.mathworks.com/matlabcentral/fileexchange/16649-send-text-message-to-cell-phone

alrededor de 10 años hace | 0

Respondida
How to create a legend with multiple plots?
h(1) = plot(1:5, rand(1,5)+1) hold on h(2) = plot(1:5, rand(1,5)+2) legend('alpha','bravo') <</matlabcentral/a...

alrededor de 10 años hace | 0

Respondida
Clearing all empty cells for minesweeper (game) code
I like to ask myself "What is the simplest thing that could possibly work?" This is always going to be fast, so how about this ...

alrededor de 10 años hace | 0

Respondida
How do I extract multiple vectors of different lengths from a single vector?
You should store each extracted vector in a cell array. The elements of a cell array do not care if they are different lenths: ...

alrededor de 10 años hace | 0

Respondida
how to crop a rectangle/square out of a image when four end points are given ?
In MATLAB, an image is really just a matrix. You could do something like this: m = ones(20,20,3) m(3:8,2:17,:) = 0 i...

alrededor de 10 años hace | 0

Respondida
Issue with updating xlabel/ylabel
Can you save the handle of the updated label, and just change the string property?

alrededor de 10 años hace | 0

Respondida
Working around looping problem
Use Simulink for time based simulation. This is simple enough though that you can do this in MATLAB. Put a flag that gets to...

alrededor de 10 años hace | 0

Respondida
how to make and interface GUI and 3D model of AIRCRAFT in MATLAB SIMULINK
This will give you a start: http://blogs.mathworks.com/videos/2011/02/02/animating-an-objects-trajectory-in-matlab-with-hgtra...

alrededor de 10 años hace | 1

Respondida
Undefined function 'cell2str' for input arguments of type 'cell'.
There is no command cell2str in core MATLAB.

más de 10 años hace | 0

| aceptada

Respondida
correct syntax for appending number to word in for loop
for i = 1:10; str = ['dt' num2str(i)] end

más de 10 años hace | 0

| aceptada

Respondida
how to select specific values in a matrix
>> a = magic(10) a = 92 99 1 8 15 67 74 51 58 40 98 80 7 14 ...

más de 10 años hace | 6

| aceptada

Respondida
How are ninja solutions even possible in Cody?
Not sure if I am using super-powers to see the leading solution that you pointed to but his is what was leading: function y...

más de 10 años hace | 2

| aceptada

Respondida
How to display a complex number in edit in GUI?
Make a second edit box right next to it that only displays the imaginary part and is labeled with an i (or j if you are that typ...

más de 10 años hace | 0

Cargar más