Beantwortet
R2014b problem exporting EPS
Thank you for your patience. We have published an article about this. http://www.mathworks.com/matlabcentral/answers/162283-...

mehr als 11 Jahre vor | 0

| akzeptiert

Beantwortet
How do you format rotated text from clabel in MATLAB 2014b?
Sorry this took a while to get answered. I have checked with our developers to confirm and this is a known incompatibility goin...

mehr als 11 Jahre vor | 0

| akzeptiert

Beantwortet
addlistener in R2014b can't access new property value?
So this will work, since you know the values you want int there, pass them in like any other argument to the call back. fun...

mehr als 11 Jahre vor | 0

Beantwortet
Blank areas with fill and patch in 2014b
Thank you for this simple reproduction case. Our developers in this area have noted this: Our current rule for in-out test...

mehr als 11 Jahre vor | 0

Beantwortet
How to change particular pixel color of a binary image to other color?
Change colormap? clf im = round(rand(10)); imshow(im) colormap([0 1 0; 1 1 1])

fast 12 Jahre vor | 1

Beantwortet
Is it possible to disable plot/figure generation in an entire script?
A sneaky way of kind of sort of doing this is: set(groot,'defaultFigureVisible','off') To undo this: set(groot,'def...

fast 12 Jahre vor | 2

| akzeptiert

Beantwortet
GUIDE Tabs Support in R2014b
http://www.mathworks.com/products/matlab/matlab-graphics/#user_interfaces_with_tab_panels Tab pannels are supported in r2014b...

fast 12 Jahre vor | 0

| akzeptiert

Beantwortet
Font problems when exporting as EPS
From the printing developer: The issue is that Illustrator complains about a missing Helvetica font when the file is import...

fast 12 Jahre vor | 0

Beantwortet
R2014b, where'd 'TitleHandle' go? uipanel
clear close all panel = uipanel('position',[0.5 0.5 0.2 0.2],'parent',gcf) cbox = uicontrol('style', 'checkbox', ...

fast 12 Jahre vor | 0

| akzeptiert

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

fast 12 Jahre vor | 0

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

fast 12 Jahre vor | 0

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

fast 12 Jahre vor | 0

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

fast 12 Jahre vor | 0

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

fast 12 Jahre vor | 0

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

fast 12 Jahre vor | 0

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

fast 12 Jahre vor | 0

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

fast 12 Jahre vor | 0

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

etwa 12 Jahre vor | 2

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

etwa 12 Jahre vor | 1

Problem


2048 tile game
The popular 2048 game has been implemented here: http://gabrielecirulli.github.io/2048/ Given the board like this: [2...

mehr als 12 Jahre vor | 2 | 13 Lösungsvorschläge

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

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
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-')

mehr als 12 Jahre vor | 1

Beantwortet
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); ...

mehr als 12 Jahre vor | 0

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

mehr als 12 Jahre vor | 1

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

mehr als 12 Jahre vor | 0

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

mehr als 12 Jahre vor | 0

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

mehr als 12 Jahre vor | 1

| akzeptiert

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

mehr als 12 Jahre vor | 0

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

mehr als 12 Jahre vor | 0

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

mehr als 12 Jahre vor | 0

Mehr laden