photo

Dasharath Gulvady

MathWorks

Last seen: environ 3 ans il y a Actif depuis 2014

Followers: 0   Following: 0

Message

I am a Software Engineer at The MathWorks. I like to code in Java, JavaScript and MATLAB.

My interests are Machine Learning and Big Data.
Professional Interests: MATLAB

Statistiques

All
  • 3 Month Streak
  • Knowledgeable Level 2
  • First Answer
  • Solver

Afficher les badges

Feeds

Afficher par

Réponse apportée
How do I open a website in a browser, enter login data and get the resulting page content automatically?
If you are web service requires authentication, you can pass the username and password using weboptions with webwrite: http:/...

environ 9 ans il y a | 0

Réponse apportée
How can I get a Hyperlink url ?
Didier, The function "urlread" returns a string containing the entire text of the webpage at the specified URL. You may then ...

environ 9 ans il y a | 0

| A accepté

Réponse apportée
Adding jars to matlab
Jason, You may achieve this by adding the JAR file only for compiled applications, which can be done using "isdeployed" as fo...

environ 9 ans il y a | 0

| A accepté

Réponse apportée
Problem with compiling mex with gcc-4.7
Bulat, The warnings might not be specific to MEX files, but may be related to the difference between C/C++ compilers in Windo...

environ 9 ans il y a | 0

Réponse apportée
Intersection points between a line and trisurf plot
The below answer is probably what you are looking for: http://www.mathworks.com/matlabcentral/answers/74848-intersection-of-a...

plus de 9 ans il y a | 0

Réponse apportée
I'm extracting frames of selected events from an avi file (5 GB). The way I did it is saving all frames as images, creating avi after that. Worked with few events, more events now. Can I store frames in workspace (as array), then create avi?
I assume you are using "VideoWriter" to create an avi file from the images. I understand that you would like to not convert the ...

plus de 9 ans il y a | 0

Réponse apportée
What size recomendation for head node?
Does the head node support a minimum of 16,384 file file descriptors as mentioned in the documentation page of MDCS: http://w...

plus de 9 ans il y a | 0

| A accepté

Réponse apportée
Sending Wireless UDP signals in Matlab
Before executing "udp", start the UDP echo server using "echoudp": http://www.mathworks.com/help/instrument/echoudp.html Y...

plus de 9 ans il y a | 0

Réponse apportée
How do I call a MATLAB Script using javascript?
* Make sure mainGUI is a MATLAB function and not just a script * Make sure mainGUI is in the current folder or MATLAB's search...

plus de 9 ans il y a | 0

Réponse apportée
can parfor in compiled code access a local worker pool?
It is definitely possible for a compiled MATLAB code to utilize profiles created using Parallel Computing Toolbox. The below doc...

plus de 9 ans il y a | 0

Réponse apportée
Java Error when using compiled matlab code (GUI) using the Instrument Control Toolbox
The below bug report looks relevant to your issue: http://www.mathworks.com/support/bugreports/search_results?utf8=%E2%9C%93&...

plus de 9 ans il y a | 0

Réponse apportée
Serial Communication in Maltab using Linux 64 Bit
The below answer may be relevant: http://www.mathworks.com/matlabcentral/answers/95024-why-is-my-serial-port-not-recognized-w...

plus de 9 ans il y a | 0

Réponse apportée
Mixing compiled matlab shared libraries with mex code.
The best way to do this is to place the MEX file in a relative path to "ctfroot": http://www.mathworks.com/help/compiler/ctfr...

plus de 9 ans il y a | 0

Réponse apportée
.Net c# sdk - MWStructArray.GetField(string fieldName) Rounding
As Steven has already mentioned, this may be because of the usage of "format" in MATLAB, which results in higher precision. In y...

plus de 9 ans il y a | 0

Réponse apportée
imresize not working on Matlab compiler runtime server
what is "imresizemex"? If it is a function, add is as one of the required files while creating the executable. [Edit] Try ...

plus de 9 ans il y a | 0

Réponse apportée
Using csaps (or similar) to create a 3D smoothing spline
You can do this using "csaps" function. However the trick is to make "z" your independent variable. [pp,p]=csaps(z,[x;y]); ...

plus de 9 ans il y a | 0

| A accepté

Réponse apportée
Length of a 3D curve.
You have declared 's' inside "spacecurvelength" function. I am guessing it needs to be declared outside. >> syms s; >> c...

plus de 9 ans il y a | 0

Réponse apportée
How to put cell array in sprintf?
a={1,2,3,4,5}; sprintf('%d,%d,%d,%d,%d',a{:});

plus de 9 ans il y a | 1

Réponse apportée
What is the proper format string for float?
If you are looking for a way to round off the decimal values, see the below thread: http://stackoverflow.com/questions/421137...

plus de 9 ans il y a | 0

Réponse apportée
query and read the status from Com port
You have two "fprintf" calls in the code and one "fscanf". The "fscanf" will return the result of "ens". For "closed?" execute "...

plus de 9 ans il y a | 1

Réponse apportée
How can I load lots of files with a for loop and then multiply them by a vector
Assuming that all the MAT files have same data(let's say "mydata"): N=3 for i=1:N toLoad = sprintf('variable%d_dat...

plus de 9 ans il y a | 1

| A accepté

Réponse apportée
Matlab NNU License with Concurrent Toolboxes
The licensing is independent of MATLAB release. You must be able to use NNU license in any release.

plus de 9 ans il y a | 0

Réponse apportée
Order of legends in stacked bar plot
You can use the first input argument to the "legend" command to specify the handle order. Here are two examples: figure su...

plus de 9 ans il y a | 4

Réponse apportée
How to write a matrix into Geotiff file?
According to the documentation R is: _spatialref.GeoRasterReference object, referencing matrix, or referencing vector; or spa...

plus de 9 ans il y a | 2

Réponse apportée
link .dll files with matlab
You can use "loadlibrary" function to load and use the functions from a C/C++ DLL in MATLAB. http://www.mathworks.com/help/ma...

plus de 9 ans il y a | 0

| A accepté

Réponse apportée
How to call putty directly from matlab and write script that I can write on putty to control an actuator (UV LED power) through USB?
You may be able to control the actuator without using PuTTY and directly from MATLAB. There are few functions available on MA...

plus de 9 ans il y a | 0

Réponse apportée
Open all cores in Parpool
I am guessing you have 16 physical cores and 32 virtual cores. "parpool" opens up same number of workers as your physical cores....

plus de 9 ans il y a | 1

Réponse apportée
Does Image Acquisition Toolbox support Intel Perceptual Computing SDK(Senz3D)?
Currently, Intel Perceptual Computing SDK is not supported by Image Acquisition Toolbox. However, the below File Exchange su...

plus de 9 ans il y a | 0

| A accepté

Réponse apportée
Why doesn't the quiver object property MaxHeadSize work?
Which MATLAB release are you using? This might be helpful: http://www.mathworks.com/matlabcentral/answers/96754-why-can-t-i-c...

plus de 9 ans il y a | 0

Réponse apportée
Simulink Support Package for Samsung GALAXY S5
Samsung GALAXY S5 is not supported by the Simulink Support Package. Currently, Samsung GALAXY S4 and Samsung GALAXY Tab 2 10.1 t...

plus de 9 ans il y a | 0

Charger plus