Doug Hull - MATLAB Central
photo

Doug Hull


Last seen: 10ヶ月 前 2011 年からアクティブ

Followers: 0   Following: 0

Formerly known as MATLABDoug during my 15 year tenure at MathWorks. Now I live in Vegas, write poker books and relieve tourists of their poker money.

統計

All
MATLAB AnswersCodyFile ExchangeFrom 01/11 to 04/25Use left and right arrows to move selectionFrom 01/11Use left and right arrows to move left selectionTo 04/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

29 質問
287 回答

File Exchange

7 ファイル

Cody

52 問題
58 解答

ランク
115
of 298,180

評判
1,071

コントリビューション
29 質問
287 回答

回答採用率
82.76%

獲得投票数
420

ランク
54 of 20,546

評判
14,943

平均評価
4.50

コントリビューション
7 ファイル

ダウンロード
20

ALL TIME ダウンロード
146426

ランク
3,139
of 160,541

コントリビューション
52 問題
58 解答

スコア
1,100

バッジ数
7

コントリビューション
0 投稿

コントリビューション
0 パブリック チャネル

平均評価

コントリビューション
0 ハイライト

平均いいねの数

  • Cody 5th Anniversary Author
  • 12 Month Streak
  • Pro
  • Likeable
  • Famous
  • Personal Best Downloads Level 2
  • Editor's Pick
  • First Review
  • 5-Star Galaxy Level 5
  • First Submission
  • Revival Level 2
  • Knowledgeable Level 4

バッジを表示

Feeds

表示方法

回答済み
How do I comment out a large block of code in MATLAB?
To comment out a large block of code in the Editor or Live Editor, select the code and on the "Editor" or "Live Editor" tab, cli...

1年以上 前 | 66

| 採用済み

問題


Is this a valid Tic Tac Toe State?
For the game of <https://en.wikipedia.org/wiki/Tic-tac-toe Tic Tac Toe> we will be storing the state of the game in a matrix M. ...

7年以上 前 | 5 | 120 個のソルバー

問題


Is this is a Tic Tac Toe X Win?
For the game of <https://en.wikipedia.org/wiki/Tic-tac-toe Tic Tac Toe> we will be storing the state of the game in a matrix M. ...

7年以上 前 | 2 | 514 個のソルバー

送信済み


Puzzler: Supporting files
Supporting files for a July 2009 puzzler from http://blog.mathworks.com/videos

8年以上 前 | ダウンロード 1 件 |

0.0 / 5
Thumbnail

送信済み


MakeColorMap
Makes colormaps that smoothly blend from one color to another to optionally a third.

8年以上 前 | ダウンロード 4 件 |

5.0 / 5
Thumbnail

送信済み


Video: GUIDE Advanced Techniques
Advanced techniques in GUI building with GUIDE. Techniques include: multi-window GUIs, application.

8年以上 前 | ダウンロード 3 件 |

4.6 / 5
Thumbnail

送信済み


Video: GUIDE Basics Tutorial
Five minute video about building GUIs in MATLAB.

8年以上 前 | ダウンロード 3 件 |

4.51852 / 5
Thumbnail

送信済み


Mars Rover Landing Animation
Animation of Mars Rover

8年以上 前 | ダウンロード 2 件 |

4.14286 / 5

送信済み


ZoomBox
Movable, stretchable zoom box in parent axes controls axes limits in all children axes.

8年以上 前 | ダウンロード 1 件 |

4.0 / 5
Thumbnail

送信済み


Three-dimensional reconstruction from planar slices.
Solid object reconstructed from slice images in parallel planes.

8年以上 前 | ダウンロード 4 件 |

4.0 / 5
Thumbnail

回答済み
I have plotted two equations. How to get their intersection point?.......Thanks
The cheap way to do this is to plot both and zoom in. ezplot('(x-5)^2+(y-3)^2=4'); hold on ezplot('y-x^2+2.5*x=0'); ...

9年以上 前 | 0

回答済み
Integrating C++ into MATLAB
<http://www.mathworks.com/help/matlab/ref/mex.html MEX examples from the MATLAB documentation>

約10年 前 | 4

回答済み
Using the legend in a plot leads to errors in displaying them
I think something is amiss on your path. I suspect Legend has been overwritten by a different function that is for some reason ...

10年以上 前 | 0

| 採用済み

回答済み
Alternative to contour plot: pixel plot?
This looks like it can be done with the command <http://www.mathworks.com/help/matlab/ref/image.html "Image">

10年以上 前 | 0

| 採用済み

回答済み
legend entry callbacks in 2014b
Short answer: No. http://www.mathworks.com/help/matlab/graphics_transition/why-are-colorbars-and-legends-not-valid-axes-handl...

10年以上 前 | 0

回答済み
Legend line spacing in R2014b
Here are a variety of changes to legend: http://www.mathworks.com/help/matlab/graphics_transition/why-are-colorbars-and-lege...

10年以上 前 | 0

回答済み
Create part of Handles variable
Please don't do this: See this FAQ. http://www.mathworks.com/matlabcentral/answers/143-how-do-i-make-a-series-of-variables...

10年以上 前 | 0

| 採用済み

回答済み
Problem Running any GUI
In the third way, you shoulr right click to "open in GUIDE" or run the .M file. The .Fig files of a GUIDE file are not really m...

10年以上 前 | 0

回答済み
Annoying behavior saving eps figures in MATLAB 2014
Please send the specifics of your case, code and old and new outputs, to www.mathworks.com/support Without more details, it i...

10年以上 前 | 0

回答済み
barh with colored bars: differences between 2012b and 2014b
The Bar properties of Children is no longer available. This is along the lines of what you want to accomplish: bar([1 na...

10年以上 前 | 1

| 採用済み

回答済み
2014b axis label errors when printing to postscript
This is under investigation by our developers. We have found there is a gap, the size of which is dependent on the length of ...

10年以上 前 | 1

回答済み
Stacking order of figures
Maybe I am misunderstanding the question: close all for ni = 1:3 figure plot(rand(7)) drawnow en...

10年以上 前 | 0

回答済み
axis in a semilogx
Just add xlim([1 128000]) <</matlabcentral/answers/uploaded_files/21263/loggy.jpg>>

10年以上 前 | 0

| 採用済み

回答済み
Cannot set the tick mark direction as default
From our development staff: set(groot, 'defaultAxesTickDir', 'out'); set(groot, 'defaultAxesTickDirMode', 'manual'); ...

10年以上 前 | 1

| 採用済み

回答済み
Patch performance with caxis?
Mike Garrity showed me this example earlier with respect to patch: >> 2.4814 frames per second >> 20.6223 frames per secon...

10年以上 前 | 1

| 採用済み

回答済み
point of intersection of a circle and binary image
I have an ugly solution that might be what you want: * run EDGE on the binary image. You now have a binary image with the ...

10年以上 前 | 0

回答済み
how do i assign a color to the same type of shape
If you make this a binary image, you can run it through regionprops. There are a variety of metrics in there that should be use...

10年以上 前 | 0

回答済み
How do I prevent LineWidth property from affecting line start and end point on plot?
There is not currently a way to turn of the endcaps on the lines. Maybe you could use less wide lines, or put markers over th...

10年以上 前 | 0

回答済み
Problem with 'Patch' graphics in 2014b - Splits in two along diagonal
The file we are creating in MATLAB is correct and what you are seeing is a bug in Adobe Reader, refer to Stata’s description of ...

10年以上 前 | 1

さらに読み込む