Community Profile

photo

Debarati Banerjee

MathWorks

Active since 2014

I did my Masters in Instrumentation and Signal Processing from Indian Institute of Technology, Kharagpur.
Professional Interests: Instrumentation and Control

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

Statistics

  • 3 Month Streak
  • Knowledgeable Level 2
  • First Answer

View badges

Content Feed

View by

Answered
I have about 60 figures generated from running a script, is there a simple way to install these into a report and add some basic text and headings
You can <http://in.mathworks.com/help/matlab/matlab_prog/publishing-matlab-code.html publish> a MATLAB script(.m)to create a rep...

meer dan 7 jaar ago | 0

| accepted

Answered
How can I export simulations results from scope to Excel package for analysis???
You can use the <http://in.mathworks.com/help/simulink/slref/scope.html 'Log Data to Workspace'> option of the scope to store th...

meer dan 7 jaar ago | 1

Answered
How to change axis of a solid block ?
The block 'Rigid Transform' should be able to take care of this issue. This <http://in.mathworks.com/help/physmod/sm/examples...

meer dan 7 jaar ago | 0

Answered
uistack on legend and axes objects
Hi Cameron, I made a few changes to the programme and I believe it is working now. Can you check this? % make some data ...

meer dan 7 jaar ago | 0

Answered
double(limit) trouble
When the input argument to DOUBLE function is a symbolic expression, MATLAB will output the error message you received. You c...

meer dan 7 jaar ago | 0

Answered
Plotting Matrix Data Points with a Specific Color
Just changing the plot command a bit may work for you: plot(x{1}, bal_t1(:,1), '+b',x{1}, bal_t1(:,2), '+r',x{1}, bal_t1(:,...

meer dan 7 jaar ago | 0

Answered
"Matlab Function" calling sequence in Simulink
I guess you are using 'Variable-Step Solver' for which you are seeing that sometimes its on the same Time values and sometimes i...

meer dan 7 jaar ago | 0

Answered
IHow can I get the palette pane back in Simulink real-time explorer? I had it this morning but lost it.
In Simulink Real-Time Explorer, navigate to the following path: View->Palette and click once on the option 'Palette'. The ...

bijna 8 jaar ago | 0

Answered
How to output Matlab-Compiled-Excel-Addin array in Excel? If VBA is required, please provide sample code.
Please refer to the Paragraph under the heading 'Function Execution from the Deployed Component' of this <http://in.mathworks.co...

bijna 8 jaar ago | 0

Answered
Generating executable from Simulink model with custom output name
This may be achieved by changing the Makefile configuration and adding an argument to the Make command: make_rtw PRODUCT=../n...

bijna 8 jaar ago | 1

| accepted

Answered
How to define, edit and delete ROI in a (scatter) plot?
You may use the 'DeleteFcn' property to call a function when an 'imfill' object is being deleted. >> set(h,'DeleteFcn',{@fcn}...

bijna 8 jaar ago | 0

Answered
Run 2013a Simulink model in 2014a
You may find the following link helpful which elaborates on how to upgrade models created in previous releases to newer releases...

bijna 8 jaar ago | 0

Answered
Didviding and multiplying transfer functions
Can you first apply the function ' <http://in.mathworks.com/help/control/ref/minreal.html minreal> ' on your 'G' and 'H' functio...

bijna 8 jaar ago | 4

Answered
How to define, edit and delete ROI in a (scatter) plot?
For the function 'imline', you can use the method 'delete' to delete the the ROI object from figure. You may edit the position o...

bijna 8 jaar ago | 0

Answered
Arduino Hardware Support Package Installation Error
Which version of MATLAB are you using to download the Support Package? Can you try to use the option 'Download from Internet'...

bijna 8 jaar ago | 0

Answered
Counting the amount of pulses
You can use the block 'Detect Rise Positive' to detect the rising edge of each pulse. You may set the output of this block to 'u...

bijna 8 jaar ago | 1

Answered
Is it possible to put subplots next to each other without any gap?
Yes it will be possible to put square subplots without axis and labels next to each other. A sample code is here: a=subplo...

meer dan 8 jaar ago | 0

Answered
I have a string S='010101' I need to take each element from the string and check whether it 1,if it is one then the count is incremented by one in matlab?
This seems to work: St='010101'; count=0; a=0; for i=1:6 a=St(1,i); if(str2num(a)==1) count=cou...

meer dan 8 jaar ago | 0

Answered
How to put a Permanent Magnet Synchronous Machine to work only as generator
A Permanent Magnet Synchronous Machine acts as a generator mode only when the sign of the mechanical torque supplied at port Tm ...

meer dan 8 jaar ago | 0

Answered
find Stateflow Test Points in Simulink model
The following piece of code will list the names of all the states in a model ('model_name.slx') with 'Test Point' enabled. ...

meer dan 8 jaar ago | 0

| accepted

Answered
Does inverse block in Simulink support fixed point data type?
The Product block does not support matrix inversion for fixed-point data types. Hence it errors out. This <http://www.mathwor...

meer dan 8 jaar ago | 0

Answered
Is it possible to obscure the subsystem names with the Matlab obfuscation? Are there other methods of strengthening model protection in the Matlab obfuscation?
Obscuring Simulink subsystem names might not be possible, but you can strengthen model protection by converting the subsystem (w...

bijna 9 jaar ago | 1

Answered
First time opeing matlab and I tried to do a simple plot. A blank window opened, but the plot did not occur. Instead, I received the exception shown below. Does anyone know why this is occurring?
You can refer to this <http://www.mathworks.com/support/bugreports/1179769 Bug Report> which provides workaround for the type of...

bijna 9 jaar ago | 0

Answered
In the below code, whenever a negative value is plugged into tmin, the function crashes. Please help.
You get this type of error when you attempt to index into a matrix or vector using a set of indices that include a number that i...

bijna 9 jaar ago | 0

Answered
How can I change the view of a 1xn structure in the 2015 version of MATLAB (which has been automatically changed) back to the view of a 1xn structure in the 2013 version?
The new way of viewing one-dimensional structures in Variable Editor was introduced from the MATLAB release R2013b. You can ...

bijna 9 jaar ago | 0

Answered
How to hatched between contour lines?
You can refer to the following link which refers to a similar query as yours: <http://www.mathworks.com/matlabcentral/answers...

bijna 9 jaar ago | 0

Answered
how to keep parent figure settings after inserting children figures
You can keep the parent figure settings after inserting the children axes by plotting the line directly in the axes where it is ...

bijna 9 jaar ago | 0

| accepted

Answered
multiple cumulative subplots in while loop
You can use the 'hold on' command after plotting a set of data. The modified code is working as expected: clear all; figure...

bijna 9 jaar ago | 0

| accepted

Answered
MATLAB doesn't exit, all windows close, but MATLAB.exe persists in Task Manager
It is a known issue with MATLAB R2014b. As a workaround MATLAB can me made to terminate itself via a call to the operating syste...

bijna 9 jaar ago | 3

Answered
Indexing a cell array in a table
When you try to access contents of multiple cells, MATLAB creates a comma-separated list. Because each cell can contain a differ...

bijna 9 jaar ago | 2

| accepted

Load more