![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/21449723_1684294715876_DEF.jpg)
Kanishk Singhal
Followers: 0 Following: 0
My interest includes web and app development and machine learning.
Programming Languages:
Python
Spoken Languages:
English
Pronouns:
He/him
Python
Spoken Languages:
English
Pronouns:
He/him
統計
MATLAB Answers
0 質問
12 回答
ランク
of 157,725
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
回答済み
matlab app designer and arduino
Here is the reference for connection to arduino with MATLAB. You can try first setting up a connection with MATLAB itself perfo...
matlab app designer and arduino
Here is the reference for connection to arduino with MATLAB. You can try first setting up a connection with MATLAB itself perfo...
1年以上 前 | 0
回答済み
Update App Designer UITable State
You have to put this in your button pushed callback function. ButtonPushedFcn is the callback function for a button which is ex...
Update App Designer UITable State
You have to put this in your button pushed callback function. ButtonPushedFcn is the callback function for a button which is ex...
1年以上 前 | 0
回答済み
How to expend 1 dim for array ?
Yeah, as you said MATLAB ignnores dimension of size 1, but if you do, A = [1 2;3 4]; size(A,3) You'll get 1 which I think is ...
How to expend 1 dim for array ?
Yeah, as you said MATLAB ignnores dimension of size 1, but if you do, A = [1 2;3 4]; size(A,3) You'll get 1 which I think is ...
1年以上 前 | 1
回答済み
Calculate the average of each matrix block
You can use the mean function for calculating the average of submatrix. Better way to iterate is using row, col rather than ind...
Calculate the average of each matrix block
You can use the mean function for calculating the average of submatrix. Better way to iterate is using row, col rather than ind...
1年以上 前 | 0
回答済み
How to select, or filter, the external border/boundary in a set of (x,y)-points? [Part 2]
If you plot after the loop, figure; hold on b=a{1}; for i = 2 : length(a) c=a{i}; b=setxor(b,c,'rows','stable'); ...
How to select, or filter, the external border/boundary in a set of (x,y)-points? [Part 2]
If you plot after the loop, figure; hold on b=a{1}; for i = 2 : length(a) c=a{i}; b=setxor(b,c,'rows','stable'); ...
1年以上 前 | 1
回答済み
App designer uifigure position
You can get the current screen size and then position the window accordingly, screenSize = get(0,'ScreenSize'); centerX = s...
App designer uifigure position
You can get the current screen size and then position the window accordingly, screenSize = get(0,'ScreenSize'); centerX = s...
1年以上 前 | 0
回答済み
Rotate Label on App Designer
There is a FEX submission which can be help. uibutton: GUI pushbuttons with better labels - File Exchange - MATLAB Central (mat...
Rotate Label on App Designer
There is a FEX submission which can be help. uibutton: GUI pushbuttons with better labels - File Exchange - MATLAB Central (mat...
1年以上 前 | 0
回答済み
app designer output data
You may want to look at uisave. This saves your data at your selected location in dialog box. This will save in a mat-file. If ...
app designer output data
You may want to look at uisave. This saves your data at your selected location in dialog box. This will save in a mat-file. If ...
1年以上 前 | 0
回答済み
Rotating plot with multiple y-axis
Is this is the figure you are looking for? The third plot is for sin() rotated clockwise 90deg. This can be achieved with t...
Rotating plot with multiple y-axis
Is this is the figure you are looking for? The third plot is for sin() rotated clockwise 90deg. This can be achieved with t...
1年以上 前 | 0
回答済み
Index in position 1 is invalid. Array indices must be positive integers or logical values.
You are having some confusion at line 22 and line 23, f=@(t,y) y; % 22 f=v*sin(theta)-g*t; % 23 You are defin...
Index in position 1 is invalid. Array indices must be positive integers or logical values.
You are having some confusion at line 22 and line 23, f=@(t,y) y; % 22 f=v*sin(theta)-g*t; % 23 You are defin...
1年以上 前 | 0
回答済み
how to create log histogram?
What I understand from your question is that you need to plot histograms as points inside a plot. You can do that by setting po...
how to create log histogram?
What I understand from your question is that you need to plot histograms as points inside a plot. You can do that by setting po...
1年以上 前 | 0