Sindhu Priya
Followers: 0 Following: 0
Estadística
0 Preguntas
18 Respuestas
CLASIFICACIÓN
1.591
of 295.495
REPUTACIÓN
42
CONTRIBUCIONES
0 Preguntas
18 Respuestas
ACEPTACIÓN DE RESPUESTAS
0.00%
VOTOS RECIBIDOS
8
CLASIFICACIÓN
of 20.240
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 153.991
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
Feeds
How to activate the code in a callback from a push button in one GUI from another pushbutton from the other GUI?
Hi Jacob, As you are trying to give a pop-up when delete button is pushed, the callback function of the delete button would h...
más de 7 años hace | 0
How can I add information to a uitable by clicking a checkbox and take it out of the table by unclicking it?
Hi Matthew, Please find the following code snippet, this creates a table and checkbox. table = uitable; uicontrol...
más de 7 años hace | 0
| aceptada
How to initialize a variable in a GUI?
Hi Antonette, Here is a way to do it using GUIDE. Add the variable to 'handles' parameter of the 'OpeningFcn' of the GUID...
más de 7 años hace | 4
1.011 from binary to decimal
Hi Ashleigh, The function 'bi2de' can only be used for integers. Please refer the following link for further information. ...
más de 7 años hace | 0
Can I change the font size in the App Designer editor?
Hi Neil, In R2016b there is no option to change the font size in 'App Designer' Regards, Sindhu
más de 7 años hace | 0
| aceptada
Why am I getting an 'unable to open file' error when using importdata in my batch run?
Hi Shania, One of the potential reasons causing the issue might be the file path. So, try replacing the line input = 'f...
más de 7 años hace | 0
editor occasionally unresponsive on macbook
Hi Jim, Please refer the following link <https://in.mathworks.com/matlabcentral/answers/331547-matlab-r2016b-very-slow-on...
más de 7 años hace | 0
Using pcshow on a UI panel
Hi Andre, As far as I know, 'pcshow' does not allow you to plot on any other axes apart from 'figure'. You can use 'scatter3'...
más de 7 años hace | 0
Excel link not included in update
Hi Anthony, Please refer this <https://in.mathworks.com/matlabcentral/answers/101350-why-do-i-receive-a-license-checkout-er...
más de 7 años hace | 0
Matlab R2016b very slow on Mac OS 10.12.3
Hi Avinash, There could be multiple causes for the same. Please consider the following workarounds : 1. Git™ integration i...
más de 7 años hace | 2
| aceptada
How to search a field in a structure and extract all fields that match
Hi Dave, I think, the following code snippet will help you. s.f1= {'Sunday' 'Monday'} s.f2= {'Sunday' 'Monday' ...
más de 7 años hace | 2
| aceptada
Java Heap Space Memory Matlab2009b Windows
Hi Lousie, Please follow the steps mentioned <https://in.mathworks.com/help/matlab/matlab_external/java-heap-memory-prefer...
más de 7 años hace | 0
| aceptada
i have an PPG signal array of dimension of 1440000x1. my sampling rate is 48000 and i recorded the signal for 30 second. How do I eliminate the first 5 seconds of my signal? Please do help. Thanks in advance.
I think changing the plot function like this may help you y=48000*5; plot(t(y:end),x(y:end));
más de 7 años hace | 0
How to code the 3 sigma method
Hi Enrico, There is a small mistake in the logic where you compare the upperbound and lowerbound with the actual values. u...
más de 7 años hace | 0
How to write a script that is the same as the function rem (remainder)?
If the use case is to get the reminders for the set of numerators with each element from the set of denominator, then using any ...
más de 7 años hace | 0
Odd initial figure behavior in R2016b
As MathWorks officially did not support all flavors of linux (check this <https://in.mathworks.com/support/sysreq.html link> for...
más de 7 años hace | 0
| aceptada
How to plot multiple lines on one plot using the curve fitting tool
You can try using 'hold on' command to plot multiple curves on a single graph. Refer <http://in.mathworks.com/help/curvefit/f...
casi 8 años hace | 0
How to get the sum of of particular column using group by functionality while pulling data from sql using jdbc?
You can try this SQL query to group the data select column1,column2,sum(column3) as column3 from tablename group by column...
casi 8 años hace | 0