photo

Kanishk Singhal


Last seen: más de 2 años hace Con actividad desde 2023

Followers: 0   Following: 0

My interest includes web and app development and machine learning.

Programming Languages:
Python
Spoken Languages:
English
Pronouns:
He/him

Estadística

MATLAB Answers

0 Preguntas
12 Respuestas

CLASIFICACIÓN
7.768
of 300.364

REPUTACIÓN
6

CONTRIBUCIONES
0 Preguntas
12 Respuestas

ACEPTACIÓN DE RESPUESTAS
0.00%

VOTOS RECIBIDOS
2

CLASIFICACIÓN
 of 20.934

REPUTACIÓN
N/A

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
0 Archivos

DESCARGAS
0

ALL TIME DESCARGAS
0

CLASIFICACIÓN

of 168.373

CONTRIBUCIONES
0 Problemas
0 Soluciones

PUNTUACIÓN
0

NÚMERO DE INSIGNIAS
0

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

  • First Answer

Ver insignias

Feeds

Ver por

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

más de 2 años hace | 0

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

más de 2 años hace | 0

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

más de 2 años hace | 1

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

más de 2 años hace | 0

Respondida
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'); ...

más de 2 años hace | 1

Respondida
App designer uifigure position
You can get the current screen size and then position the window accordingly, screenSize = get(0,'ScreenSize'); centerX = s...

más de 2 años hace | 0

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

más de 2 años hace | 0

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

más de 2 años hace | 0

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

más de 2 años hace | 0

Respondida
multiple graphs without spacing
You can look at this documentation of stackedplot.

más de 2 años hace | 0

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

más de 2 años hace | 0

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

más de 2 años hace | 0