Community Profile

photo

Mudambi Srivatsa

MathWorks

Last seen: 4 years ago Active since 2016

Followers: 0   Following: 0

Message

I'm a Software Engineer at MathWorks.

Statistics

  • Knowledgeable Level 3
  • Knowledgeable Level 2
  • First Answer

View badges

Feeds

View by

Answered
Are there any codes to generate planar graphs?
You can use the following file exchange submission to generate planar graphs in MATLAB: <https://www.mathworks.com/matlabcent...

6 years ago | 1

Answered
How can i generate a bas file from compiler that return all the value
The following links might be helpful in this case: <https://www.mathworks.com/matlabcentral/answers/98519-is-it-possible-to-u...

7 years ago | 0

Answered
Can I change the location of the command history to a shared directory so that I can see the same history from multiple machines?
The location of the command history files cannot be modified. As a workaround, you can manually copy the command history file fr...

7 years ago | 1

| accepted

Answered
Real time access of .mat file through 'Statistics and machine learning toolbox'
You can run MATLAB code "simultaneously" with a model only by running it as part of the simulation loop. This can be done by inv...

7 years ago | 0

| accepted

Answered
How can I undo/reverse Watershed Segmentation?
It is not possible to reverse the watershed segmentation. You are performing a data reduction by performing image segmentation. ...

7 years ago | 0

Answered
Trouble when creating and visualizing a table with COP results
you are getting "[1x1 ModelAdvisor.Table]" because MATLAB report generator does not support "ModelAdvisor.Table" and you can app...

7 years ago | 1

| accepted

Answered
How do I plot a grid 1x30 grid over a line of length 300 px and whose coordinates I know?
One way to plot a grid is turning on the MATLAB plot grid and editing the placement using axes ticks as follows: x = rand(5...

7 years ago | 0

| accepted

Answered
Matching color for a reference and a sample image
The following post might be helpful in matching the colors of the images: https://www.mathworks.com/matlabcentral/answers/3...

7 years ago | 0

Answered
How to store the looping plot value in to a variable ?
The following post discusses techniques to store loop data in MATLAB: https://www.mathworks.com/matlabcentral/answers/33750...

7 years ago | 0

Answered
C coefficients in PDE toolbox on different domains
The following post might be helpful in understanding the "Nonlinear solution failed due to singular Jacobian matrix" error: ...

7 years ago | 0

| accepted

Answered
Angles between branches using Matlab
The following link might be helpful in measuring the angles in the images: https://www.mathworks.com/help/images/examples/m...

7 years ago | 1

Answered
sim function of the neuralnetwork
With the new_data, you can use the following command to simulate the network results = sim(net, new_data) Further, you c...

7 years ago | 1

Answered
Structure from shaperead: Logical indexing gives a 'one row shift'
I am surprised that the issue is with logical indexing. How about using "find" to get the index of the matching cluster ID as fo...

7 years ago | 0

Answered
Why do lines look blurry with linewidth 1 in R2017a?
You might have to switch to 'opengl' hardware mode for graphics smoothing functionality. To do so, you can run the following cod...

7 years ago | 3

| accepted

Answered
How to add extra arguments to callback functions in App Designer?
Adding extra arguments into a callback function is not possible in App Designer. However, you can share the data to callback fun...

7 years ago | 0

Answered
How do I validate multiple linear regression with validation data?
One way to verify the goodness of fit is by plotting the fit using validation data. Refer to the following link for plotting the...

7 years ago | 0

Answered
Non-Rigid Registration of 3D Points
The following post might be helpful in converting the point cloud data to an image: https://www.mathworks.com/matlabcentral...

7 years ago | 0

Answered
Undefined function 'classifyBoundsOnVars' for input arguments of type 'double'.
Use the following command and see if these functions are present on your computer. >> which -all fmincon >> which -a...

7 years ago | 0

Answered
how to extract the breast region from a mammogram
Refer to the following posts for extracting ROI from an image: https://www.mathworks.com/matlabcentral/answers/48721-how-to...

7 years ago | 0

Answered
Binary SVM Cascade Classifier
You can import data from a variety of file formats (.txt, .csv, .xls and so on) into MATLAB table format using "readtable" funct...

7 years ago | 1

| accepted

Answered
For SVM, what is the difference between gamma and sigma in the kernel scale for rbf?
Yes, they are the same. Refer to the following post for more information: https://www.mathworks.com/matlabcentral/answers/96276...

7 years ago | 0

Answered
Split vector in groups of data and plot best fit
You can use the following code to split the vector in groups of data: Dat = [ NaN ; NaN ; 23 ; 34 ; 5 ; 12 ; 4 ; 123 ; NaN ...

7 years ago | 0

| accepted

Answered
How to select a range of pixels in a historgram?
You can use MATLAB Image Processing Toolbox function 'imhist' to create the histogram of black to white scale of your images. Re...

7 years ago | 0

Answered
On Linux, why do the Editor and Command Window freeze when scrolling?
A possible workaround for the text display issue is to place the attached java.opts (zipped) file in the following location: ...

7 years ago | 0

Answered
Combining multiple Netcdf files
One way to achieve that would be to create a new file with the existing schema (structures, dimensions, variables and attributes...

7 years ago | 0

Answered
Unable to Creat Network - Not enough input arguments
You can check for the conflicting functions using "which" command. which -all functionName The above command lists all t...

7 years ago | 0

Answered
VideoReader support for 10-bit h.264 MP4 files
videoReader does not support reading 10-bit H.264 MP4 files. Hence, the data is rescaled to 8-bit. There is no workaround curren...

7 years ago | 1

| accepted

Answered
How to obtain a ROC curve through cross validation on the training data?
In Statistics Toolbox, [X,Y] = perfcurve(labels,scores,posclass) computes a ROC curve for a vector of classifier predictions sco...

7 years ago | 0

Answered
How to avoid rrbox to generate black root window?
The black screen appearance while using the "rbbox" functionality is reproducible on some Windows machines. Currently, there is ...

7 years ago | 1

Answered
license checkout fail and troubleshooting problem
Refer to the following link for the information on resolving the issue. http://www.mathworks.com/matlabcentral/answers/99067-...

7 years ago | 0

Load more