photo

Jerbin J


Last seen: 1 month ago Active since 2023

Followers: 0   Following: 0

Message

Statistics

MATLAB Answers

0 Questions
9 Answers

RANK
4,924
of 297,457

REPUTATION
10

CONTRIBUTIONS
0 Questions
9 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
1

RANK
 of 20,438

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 158,938

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

  • Knowledgeable Level 1
  • First Answer

View badges

Feeds

View by

Answered
How to set "Argument" property of a Simulink.Parameter programmatically ?
% To set Argument property of a Simulink.Parameter % a ,b ,c are parameters in model workspace set_param(bdroot,'ParameterArgu...

1 year ago | 1

Answered
to get MATLAB and Simulink Support Package for Arduino Hardware
Hi,ICOYITUNGIYE Check the below link,it might help. Install, Update, or Uninstall Support Package

1 year ago | 0

Answered
How can I track these fine particles?
Hi Raju, Is this what you are looking for? % Read the image image = imread('imageTest.jpeg'); % Preprocess the image gray...

1 year ago | 0

Answered
xline with 1x3 array for the lable
vertical = struct(... 'vertLine', [], ... 'vertLineText', strings(1, 0) ... ); testData = [1688, 3134]; testTex...

1 year ago | 0

Answered
help for an exercise answer
a + b,a' - b,a * b,a - b These operations can be performed. a'*b,cannot be performed because:Incorrect dimensions for matrix ...

1 year ago | 0

Answered
Which outport of stateflow block will provide the proper output data?
open_system(modelName); sf=sfroot; chart=sf.find('-isa','Stateflow.Chart'); data=Stateflow.Data(ch); data.Scope='Output'; %...

1 year ago | 0

| accepted

Answered
List execution order sorted by block execution in Simulink
% Get model name modelName = bdroot(gcs); % Empty array for execution order executionOrder = []; % Turn off data logging md...

1 year ago | 0

Answered
Block Execution Order List
% Get model name modelName = bdroot(gcs); % Empty array for execution order executionOrder = []; % Turn off data logging md...

1 year ago | 0

Answered
How can I get the execution order of blocks in a Simulink model by means of a MATLAB script?
% Get model name modelName = bdroot(gcs); % Empty array for execution order executionOrder = []; % Turn off data logging md...

1 year ago | 0

| accepted