Debarati Banerjee
MathWorks
Followers: 0 Following: 0
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
0 Questions
37 Answers
RANK
1.041
of 295.448
REPUTATION
70
CONTRIBUTIONS
0 Questions
37 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
17
RANK
of 20.227
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 153.872
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
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 8 jaar ago | 0
| accepted
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 8 jaar ago | 1
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 8 jaar ago | 0
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 8 jaar ago | 0
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 8 jaar ago | 0
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 8 jaar ago | 0
"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 8 jaar ago | 0
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 ...
meer dan 8 jaar ago | 0
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...
meer dan 8 jaar ago | 0
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...
meer dan 8 jaar ago | 1
| accepted
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}...
meer dan 8 jaar ago | 0
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...
meer dan 8 jaar ago | 0
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...
meer dan 8 jaar ago | 4
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...
meer dan 8 jaar ago | 0
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'...
meer dan 8 jaar ago | 0
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...
meer dan 8 jaar ago | 1
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 9 jaar ago | 0
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 9 jaar ago | 0
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 9 jaar ago | 0
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 9 jaar ago | 0
| accepted
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 9 jaar ago | 0
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...
meer dan 9 jaar ago | 1
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...
meer dan 9 jaar ago | 0
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...
meer dan 9 jaar ago | 0
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 ...
meer dan 9 jaar ago | 0
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...
meer dan 9 jaar ago | 0
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 ...
meer dan 9 jaar ago | 0
| accepted
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...
meer dan 9 jaar ago | 0
| accepted
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...
meer dan 9 jaar ago | 3
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...
meer dan 9 jaar ago | 2
| accepted