Community Profile

photo

Vimal Rathod

MathWorks

Last seen: mehr als 2 Jahre vor Aktiv seit 2019

Followers: 0   Following: 0

I am an Application Support Engineer at Mathworks. My main responsibilities are supporting customers by answering in MATLAB Answers and also supporting developement teams at Mathworks.

My areas of interest are Simulink, MATLAB, Image processing, Computer Vision and Deep Learning.

DISCLAIMER: Any advice or opinions here are my own, and in no way reflect that of Mathworks.

Statistiken

All
  • Revival Level 3
  • Knowledgeable Level 4
  • 3 Month Streak
  • First Answer
  • Solver

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
Persistent variables from Simulink to Matlab
Hi, You could refer to the following link to know mroe about how to export the simulink data from the model to the worksapce. ...

fast 3 Jahre vor | 0

Beantwortet
Change the color of a line in a multilines plot when mouse over the particular line
Hi, Below is a link to a similar question, once you identify the line on the plot you could highlight it by increasing the 'Lin...

fast 3 Jahre vor | 0

Beantwortet
Add context menu when LEFT click on button (app design)
Hi, You could try setting up 'HitTest' property of the Image to 'off' that way your UI could register its clicks and hopefully ...

fast 3 Jahre vor | 0

Beantwortet
Paraboloid and Cylinder surface
Hi, From the given equations in your question the solution to the value would be (0,0) as the equation of cylinder creates a su...

fast 3 Jahre vor | 0

Beantwortet
How can I plot a boundary between real and imaginary solutions in a 3D graph?
Hi, If you just want to connect points you could use the surf function on the x,y,z values obtained at the end. If you want to ...

fast 3 Jahre vor | 0

Beantwortet
How can I interpolate a graph with 3 nodes?
Hi, For splines to work effectively, you have to pass more than one point. Instead of the for loop which you were using, you co...

fast 3 Jahre vor | 0

| akzeptiert

Beantwortet
LSTM get percentage of each class
Hi, You could use "predict" function to predict indiviual prediction probabilities. You can multiply by 100 to get the percenta...

fast 3 Jahre vor | 1

| akzeptiert

Beantwortet
Plotting a shapefile.
Hi, You could try using FaceAlpha property of mapshow to reduce the transparency of the polygons. Have a look at this example s...

fast 3 Jahre vor | 0

| akzeptiert

Beantwortet
How to solve this error "Reference to non-existent field 'axes5".
Hi, you could get the handle of the GUI element specific to the tag using the following code. h = findobj('Tag','axes5') Refe...

fast 3 Jahre vor | 0

Beantwortet
How to change the value in edit field and Simulink model constant at the same time in the app designer?
Hi, You could use the "ValueChangedFcn" callback to create a callback for the editfield in the app. Then in the callback code y...

fast 3 Jahre vor | 0

Beantwortet
Simulink from first order equation (ode45)
Hi, Refer to the following link to know more about how to create simulink model for differential equations. Model Differential...

fast 3 Jahre vor | 0

| akzeptiert

Beantwortet
Integration on both sides of the equation
Hi, You could refer to the following links to create two different integral expressions and equate them to make an equation wit...

fast 3 Jahre vor | 1

| akzeptiert

Beantwortet
Solenoid - Integration of inductance L as a function of plunger position x
Hi Goutham, Few things I would like to point out are, you seem to be passing a lot of arguments to the ode45 function call whic...

fast 3 Jahre vor | 0

Beantwortet
Bin data for 2 state model HMM
Hello, It isn't possible to run with your bin data as the HMM sequence must be 1 and 2 in case of two state model as this is ho...

fast 3 Jahre vor | 0

Beantwortet
How do you perform correlation coefficient for every ten rows in a specific column of a matrix?
Hi, You could use the following snippet to find out correlation coefficient over every 10 rows of some specific column. r = ra...

fast 3 Jahre vor | 0

Beantwortet
Equations of motion from simscap multi body
As of now there isn't any way to extract equations of motion from simscape multibody as it was designed to help users by abstrac...

fast 3 Jahre vor | 0

Beantwortet
Profile Matlab System block in Simulink
Hello, Like you said, the Simulink profiler would not show MATLAB line-by-line profiling results - rather it will show the time...

fast 3 Jahre vor | 0

Beantwortet
App Designer show mdl_twolink in UiAxes Component
Hi, I would recommend you to try using the plot without the twolink.plot function unless the twolink.plot function returns x,y ...

fast 3 Jahre vor | 0

Beantwortet
Why can't i start the "androidFaceDetectionAndTracking"?
Hello, Few recommendation from myside based on the information you provided. 1) Verify the existance of the file which is to b...

fast 3 Jahre vor | 0

Beantwortet
Cat and do recognition kaggle dataset and run out an error of imread
Hi, Most probably when such errors occurs the problem is usually in the file it is trying to parse. Try putting a breakpoint at...

fast 3 Jahre vor | 0

Beantwortet
How to build a multiple output regression model?
Hi, Currently there might not be any function like 'fitrauto' for multi-response variable regression but you could create your ...

fast 3 Jahre vor | 0

Beantwortet
I have completed the matlab onramp course, but its still showing 97% completed.What do I do?
Hi, Make sure you have green tick marks beside each item in the course content list, there might be a list item where you might...

fast 3 Jahre vor | 0

Beantwortet
how to change the colorbar spacing
Hi, You could use the 'TickLabels' property of colorbar to put the labels which you need in the places where you would like to ...

fast 3 Jahre vor | 0

Beantwortet
How to find area under graph between two points ?
Hi, If you would want to find area by specific points from array, you could use the indices of array to find the area. M = tra...

fast 3 Jahre vor | 0

Beantwortet
setup data type in Matlab to export in SQL
Hi, You could refer to the following link for an example on specifing data type before insertion into table and there are other...

fast 3 Jahre vor | 2

| akzeptiert

Beantwortet
Selection of a signal area to detect fixed point
You could use the "getsamples" function programmatically which returns subset of the timeseries in a specified time region. This...

fast 3 Jahre vor | 0

| akzeptiert

Beantwortet
Plotting a circular region from a function
Below is a link to a similar question which might be of help to you. How can I plot the region for two inequalities? - MATLAB A...

fast 3 Jahre vor | 1

| akzeptiert

Beantwortet
How to add error bars onto 3bar?
Hope this might be of help to you with plotting errorbars on 3d Bar Plot. 3D Bar Plot with Error Bars - File Exchange - MATLAB ...

fast 3 Jahre vor | 0

Beantwortet
Overwrite single row excel information based on Unique ID in column data
Hi, You could use the find and strcmp functions to find the index where the name or uniqueIndex matches. newName = "Diana"; d...

fast 3 Jahre vor | 0

Beantwortet
How to generate unmodulated train of pulses of certain pulse width, and certain pulse repetition frequency, with certain sampling frequency?
Hello, Have a look at the documentation link of pluse train, it provides various examples of how to tweak each variable to get ...

fast 3 Jahre vor | 0

Mehr laden