統計
MATLAB Answers
0 質問
7 回答
ランク
of 157,725
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
回答済み
Creating a 512 x 512 image from 600 x 800
Try <http://www.mathworks.com/help/images/ref/imresize.html imresize()>. This syntax: B = imresize(A, [numrows numcols]) ...
Creating a 512 x 512 image from 600 x 800
Try <http://www.mathworks.com/help/images/ref/imresize.html imresize()>. This syntax: B = imresize(A, [numrows numcols]) ...
約10年 前 | 1
| 採用済み
回答済み
How can I make sound randomly occur during 10 second presentation of other stimulus?
Here's one way of generating a random time: % Seed the random number generator (otherwise the same random sequence is gener...
How can I make sound randomly occur during 10 second presentation of other stimulus?
Here's one way of generating a random time: % Seed the random number generator (otherwise the same random sequence is gener...
約10年 前 | 0
回答済み
Axis labels in root locus
If you haven't already, try the |xlabel()| and |ylabel()| functions (they work for me). For example: h = tf([1 2 3],[4 5...
Axis labels in root locus
If you haven't already, try the |xlabel()| and |ylabel()| functions (they work for me). For example: h = tf([1 2 3],[4 5...
10年以上 前 | 1
回答済み
what is 2D otsu algorithm and how to implement it
Otsu's method (as it's more commonly known) is an image thresholding method used to convert a grayscale image to a binary one. M...
what is 2D otsu algorithm and how to implement it
Otsu's method (as it's more commonly known) is an image thresholding method used to convert a grayscale image to a binary one. M...
10年以上 前 | 0
回答済み
Modify code for tick marks to be on the outside?
Tick direction is controlled using the TickDir property. set(gca,'TickDir','out'); % The only other option is 'in' For r...
Modify code for tick marks to be on the outside?
Tick direction is controlled using the TickDir property. set(gca,'TickDir','out'); % The only other option is 'in' For r...
10年以上 前 | 7
| 採用済み
回答済み
how to color circles on an image? the color should varies with the variation of the serial data
A simple way to do this is to plot large circular data markers on top of the image (using the hold command). Something along the...
how to color circles on an image? the color should varies with the variation of the serial data
A simple way to do this is to plot large circular data markers on top of the image (using the hold command). Something along the...
10年以上 前 | 0
回答済み
UIGETFILE start in another directory AND choose two default file types
There's a slightly more flexible way to accomplish this: uigetfile({'*.txt;*.doc' 'Text file or Word document';'*.txt' 'Tex...
UIGETFILE start in another directory AND choose two default file types
There's a slightly more flexible way to accomplish this: uigetfile({'*.txt;*.doc' 'Text file or Word document';'*.txt' 'Tex...
約13年 前 | 16