Aakash Mehta - MATLAB Central
photo

Aakash Mehta


Last seen: 4年弱 前 2020 年からアクティブ

Followers: 0   Following: 0

統計

MATLAB AnswersFrom 06/20 to 04/25Use left and right arrows to move selectionFrom 06/20Use 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

0 質問
11 回答

ランク
3,113
of 298,132

評判
18

コントリビューション
0 質問
11 回答

回答採用率
0.00%

獲得投票数
7

ランク
 of 20,538

評判
N/A

平均評価
0.00

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

ダウンロード
0

ALL TIME ダウンロード
0

ランク

of 160,453

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

スコア
0

バッジ数
0

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

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

平均評価

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

平均いいねの数

  • Knowledgeable Level 1
  • First Answer
  • Revival Level 1

バッジを表示

Feeds

表示方法

回答済み
Increasing the Number of Xticks in X-axis of a datetime plot
You can set X-axis ticks values using 'xticks' Refer to xticks help. As per my understanding you need xticks from 6 to 10. Try...

5年弱 前 | 1

回答済み
matlab installation problem on windows10
This error usually indicates that security software (such as antivirus software) blocked the MATLAB installer from accessing are...

5年弱 前 | 0

回答済み
Is Matlab online available in China?
Refer to this answer. https://www.mathworks.com/matlabcentral/answers/505020-does-matlab-online-work-in-china

5年弱 前 | 1

回答済み
Canny Edge Detection Threshold Values Meaning
The 'Canny' method uses two thresholds. For example, if the threshold is [0.1 0.15] then the edge pixels above the upper limit(...

5年弱 前 | 5

| 採用済み

回答済み
How can the center be determined by the Kmeans method?
Due to the random starting value of the kmeans algorithm you are getting the different results with each implementation. In ord...

5年弱 前 | 0

回答済み
Export data from cell matrix to excel
Assuming your Ysol is looks like this. C = {1,2,3; 4,5,6; 7,8,9; 10,11,12; 13,14,15} You can convert i...

5年弱 前 | 0

回答済み
Motion Detector by frame substraction
As per my understanding, you can get the frames from the webcam. Now, you want to detect the motion from the frame. To detect th...

5年弱 前 | 0

回答済み
find a row with all elements satisfying a condition
mat = [20, 3; 43 0; 8 3; 100 3; 3 9]; You can use the below code to get rows which satisy the condition. size1 = size(mat)...

5年弱 前 | 0

回答済み
Background Subtraction using gmm on single image
ForegroundDetector method is used to detect the motion in the video. As you are applying it to a single image, it is considering...

5年弱 前 | 0

回答済み
How to sort one array based on another of a different size
A = ['a' 'a' 'b' 'c' 'c' 'd' 'd' 'd' 'd' 'e' 'e'] B = ['d' 'a' 'c' 'b' 'e'] sizeA = length(A) sizeB = length(B) You can us...

5年弱 前 | 0

回答済み
mexOpenCV & Microsoft Visual C++ 2019 vs 2015
I had the same problem with mex setup. When I tried the below steps it worked for me. I hope this will help you. Uninstall all ...

5年弱 前 | 0