photo

Sonam Gupta


Last seen: fast 3 Jahre vor Aktiv seit 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.

Statistik

MATLAB Answers

0 Fragen
19 Antworten

RANG
2.137
of 297.503

REPUTATION
30

BEITRÄGE
0 Fragen
19 Antworten

ANTWORTZUSTIMMUNG
0.00%

ERHALTENE STIMMEN
7

RANG
 of 20.449

REPUTATION
N/A

DURCHSCHNITTLICHE BEWERTUNG
0.00

BEITRÄGE
0 Dateien

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANG

of 159.017

BEITRÄGE
0 Probleme
0 Lösungen

PUNKTESTAND
0

ANZAHL DER ABZEICHEN
0

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Highlights

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • Knowledgeable Level 2
  • First Answer

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
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. ...

fast 8 Jahre vor | 0

Beantwortet
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> ...

fast 8 Jahre vor | 0

Beantwortet
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...

fast 8 Jahre vor | 0

Beantwortet
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 ...

fast 8 Jahre vor | 0

Beantwortet
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 ...

fast 8 Jahre vor | 1

| akzeptiert

Beantwortet
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...

fast 8 Jahre vor | 1

Beantwortet
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.

fast 8 Jahre vor | 0

Beantwortet
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...

fast 8 Jahre vor | 0

Beantwortet
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...

fast 8 Jahre vor | 1

Beantwortet
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...

etwa 8 Jahre vor | 0

Beantwortet
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 = ...

etwa 8 Jahre vor | 0

| akzeptiert

Beantwortet
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...

etwa 8 Jahre vor | 0

Beantwortet
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(...

etwa 8 Jahre vor | 0

Beantwortet
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 ...

etwa 8 Jahre vor | 0

Beantwortet
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...

etwa 8 Jahre vor | 0

| akzeptiert

Beantwortet
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...

etwa 8 Jahre vor | 0

Beantwortet
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...

etwa 8 Jahre vor | 1

Beantwortet
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...

etwa 8 Jahre vor | 1

Beantwortet
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 ...

etwa 8 Jahre vor | 2

| akzeptiert