Community Profile

photo

Sonam Gupta


Last seen: 約2年 前 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年弱 前 | 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年弱 前 | 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年 前 | 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年 前 | 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年 前 | 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年 前 | 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年 前 | 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年 前 | 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年 前 | 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年 前 | 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年 前 | 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年 前 | 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年 前 | 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年 前 | 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年 前 | 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年 前 | 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年 前 | 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年 前 | 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年 前 | 2

| 採用済み