photo

Sonam Gupta


Last seen: 2 years 前 自 2017 起处于活动状态

Followers: 0   Following: 0

I am an Engineer with a mixed background of Electronics and Communication as well as Information Technology. In my free time I like to watch TV series, movies, listen music.

统计学

  • Knowledgeable Level 2
  • First Answer

查看徽章

Feeds

排序方式:

已回答
How do I change the view for a Simulink State Transition Table? Currently View Does Not Allow More Than 7 States
As far as I understand, on HighDPI systems with display scaling enabled, scrollbars may not appear in State Transition Tables. ...

7 years 前 | 0

已回答
how can i solve for an angle if it is associated in the equation with cos and sin.
You can refer to the documentation of 'solve' here: <http://in.mathworks.com/help/symbolic/solve-an-algebraic-equation.html> ...

7 years 前 | 0

已回答
Publish symbolic equation to Latex with latex(symbolic equation)
I think that the functionality that you are looking for is same as what the text() command provides. It gives you an option to s...

7 years 前 | 0

已回答
Interrupt Service Routine not reached
In Polyspace, the source code has to be adapted to allow asynchronous tasks and interruptions to be taken into account. Without ...

7 years 前 | 0

已回答
optimize global data access parameter changes to none while building
"Optimize global data access" parameter shows up only if you generate code using embedded coder. In order to set its value to ...

7 years 前 | 1

| 已接受

已回答
Is it possible to publish a word document from a matlab script to look like the new SAT-Math sections?
MATLAB Report Generator is the tool that can help you. It lets you create richly formatted MS Word document. You can get more in...

7 years 前 | 1

已回答
Can Simulink PLC-Coder work together with Siemens Tia-Portal v14 and not just with Tia-Portal v13 how it says in the User Guide
To answer your question, Simulink PLC-Coder will not work with Siemens Tia-Portal v14 as MathWorks does not support it.

7 years 前 | 0

已回答
How to store outputs from a for loop iterations (without overwriting) in a table
Since you want to select rows satisfying specific condition and copy those rows in a new table, you can try the code below. It t...

7 years 前 | 0

已回答
Retrieve column vectors from table with correspondent names?
I assume that you are having the table loaded in MATLAB workspace. One way to create vectors corresponding to each column in the...

7 years 前 | 1

已回答
Can the xml files generated by trainCascadeObjectDetector be used in OpenCV 3.1?
The function trainCascadeObjectDetector() in MATLAB is designed before openCV 3.1 is released. As of now the xml files generated...

7 years 前 | 0

已回答
Evaluate neighboring nodes in a 2D lattice and change node value, as required
One of the ways in which you can achieve the desired result is by using the code below. [row, col] = size(P); result = ...

7 years 前 | 0

| 已接受

已回答
How to make a time controlled multi port switch?
Using a ramp function and mod function will help you to achieve a periodic signal that will behave like step function. It will h...

7 years 前 | 0

已回答
Cannot understand the labeled region pixel value ..
The output in the second case is different because you are not explicitly assigning to [row col]. Instead it is like ans = find(...

7 years 前 | 0

已回答
My problem is when putting the pictures together my indices have to be an integer so how do I take a third of each picture and put them together?
I assume that you are trying to stitch the images together such that for the same image 1/3rd is in grayscale, another 1/3rd is ...

7 years 前 | 0

已回答
How to change the color of the markers when plot features over an image?
As per my knowledge, you cannot change the color of markers because that is how plotting of corners is implemented in the code u...

7 years 前 | 0

| 已接受

已回答
pcolor: how to change colors for values that satisfy a condition rather than having a gradient of colors?
one way to do this is using fplot command. It lets you to plot a function of the form y = f(x) in intervals. Below is a sample c...

7 years 前 | 0

已回答
Storing Numbers from Function in a Script
Using the indices as T and p directly for storing IntEng, Gibbs, Enthalpy, Entropy array is what is creating a large array of ze...

7 years 前 | 1

已回答
matlab_add_mex is not found
Ubuntu 16.04 uses version 3.x for CMake which supports 'matlab_add_mex' function which is there inside FindMatlab package. It is...

7 years 前 | 1

已回答
Call M-script in C/C++ Sfunction
I understand that you have written a S-Function in C and you want to call a matlab script from that function. I assume that you ...

7 years 前 | 2

| 已接受