Community Profile

photo

Harshita Gupta


Active since 2019

I work in Mathworks India Pvt.Ltd
DISCLAIMER: Any advice or opinions posted here are my own, and in no way reflect that of MathWorks.

Statistics

All
  • Knowledgeable Level 2
  • Solver
  • First Answer

View badges

Content Feed

View by

Answered
How can I draw interactively a polygon on axes in App designer ?
Hello, If you are using version R2018b or earlier then try mapping the current point of a UIFigure to the UIAxes.Should probabl...

5 years ago | 0

Answered
some header files which are actually included in code were not generated in code generation process of simulink.
Hello , Try restoring the search path to default one : >> rehash toolbox >> rehash toolboxcache >> sl_refresh_customizati...

5 years ago | 0

Answered
Write array in a while loop
Hello, As per my understanding you want the arrays to plot the intermediate iteration results .I think these links should help ...

5 years ago | 0

Answered
Can you convert an image or video into a wavelength plot (spectrum)?
Hello, I am attaching fews links for your reference. They should help you : How to covert image to frequency domain ? Spectru...

5 years ago | 0

Answered
display correct format of table in matlab report
Try opting for this approach . Should help you !

5 years ago | 0

Answered
Matlab crashing when calling a python function with python external library imports
Your question looks similar to this question. Try following the steps mentioned in the post : https://www.mathworks.com/matlab...

5 years ago | 0

Answered
did anyone know how to train a Faster R-CNN detector to detect multiple object classes?
Multiple objects can be detected by formatting the input "trainingData" to contain information about multiple object classes. If...

5 years ago | 0

Answered
Need help connecting edges after running an edge detection method on an image
As per my understanding you want to fetch the object boundaries. If that is the question then instead of plotting the edges and...

5 years ago | 0

| accepted

Answered
R2018b not opening Appdesigner or mlapp.
Try solving the issue by following these steps : https://www.mathworks.com/matlabcentral/answers/313886-why-is-app-designer-not...

5 years ago | 0

Answered
Could anyone here provide some information about agent-based modeling using Simulink?
As far as I understand the SimEventsTollbox can help you through this.Below are some links for learning about SimEvent Tollbox. ...

5 years ago | 0

| accepted

Answered
Missing "Configure Model Functions" Button in Interface tab of Code Generation
The 'ModelStepFunctionPrototypeControlCompliant' parameter can determine whether the 'Configure Model Functions' appears or not....

5 years ago | 0

Answered
Performance Issue detected in Table vs Struct Data
Table do have known performance issues but you can refer to following links to improve your code: https://www.mathworks.com/m...

5 years ago | 1

| accepted

Solved


Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...

5 years ago

Solved


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; ...

5 years ago

Solved


Is my wife right?
Regardless of input, output the string 'yes'.

5 years ago

Solved


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

5 years ago

Solved


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

5 years ago

Solved


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

5 years ago

Solved


Add two numbers
Given a and b, return the sum a+b in c.

5 years ago

Solved


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

5 years ago

Solved


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

5 years ago

Solved


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

5 years ago

Answered
Finding out the gradient for a set of points in three dimensional coordinates.
In order to calculate the velocity given set of 3D points and time stored in an excel sheet, please follow the steps below : Re...

5 years ago | 0