Sanket Mishra
University at Buffalo
Followers: 0 Following: 0
I am Application Support Engineer. I like playig cricket and cooking.
Professional Interests: MATLAB, MATLAB Compiler,DAQ,IMAQ,PCT,MEX
Estadística
0 Preguntas
11 Respuestas
CLASIFICACIÓN
4.996
of 295.467
REPUTACIÓN
10
CONTRIBUCIONES
0 Preguntas
11 Respuestas
ACEPTACIÓN DE RESPUESTAS
0.00%
VOTOS RECIBIDOS
1
CLASIFICACIÓN
of 20.234
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 153.912
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
Controlling the frame rate of a image acquisition program in MATLAB.
The error message on your machine is caused by the delay between the device and MATLAB, which is not a constant value and this r...
más de 10 años hace | 1
| aceptada
Serial communication with Arduino error "Index exceeds matrix dimensions"
In your FOR iteration when i exceeds 3 then the code points to an index say v4(4,1) corresponding to which there does not exist ...
más de 10 años hace | 0
Matlab code to dll conversion
Refer the <http://www.mathworks.com/help/releases/R2012b/compiler/creating-a-shared-library-from-matlab-code.html Create a Share...
más de 10 años hace | 0
can any one tell me some thing how to use the lasso function
Lasso function provides regularized least-squares regression using lasso or elastic net algorithms. You can use below syntax to...
más de 10 años hace | 0
Importdata does not import whole .txt file
Put importdata command into try and catch block and look for the exception that gets displayed. This might help you. try ...
más de 10 años hace | 0
How to set LD_LIBRARY_PATH for local workers
Use below sequence of commands to set LD_LIBRARY_PATH for 12 workers: parpool(12); pctRunOnAll setenv('LD_LIBRARY_PATH',...
más de 10 años hace | 0
Compiled application and -e flag
"pause" is known to cause problem in standalone applications. Modify your code as below so that JFrame will not disappear ...
más de 10 años hace | 0
| aceptada
What Matlab can do without toolbox
If you execute a built in function that does require a specific toolbox which is not installed on your machine, it will simply e...
más de 10 años hace | 0
Problem DAQ device - Matlab doesn't find device properly
You cannot add AnalogOutputChannel to this device as it only supports Digital i/o and counter i/o channels. Moreover, MATLAB...
más de 10 años hace | 0
vid = videoinput('winvideo',1,vinfo.SupportedFormats{'1280*720'}); ?
Assuming you are using a format supported by the device, simply use 1280x720 instead of 1280*720 (replace * by x).
más de 10 años hace | 0
how to download a file using matlab ?
“urlread” function returns the contents of a URL in the form of a string : >> filex = 'http://www.mathworks.com/matlabcentral/f...
más de 10 años hace | 0