Whether it is possible to implement cotton leaf disease detection using simulink? If possible ,can you suggest any ideas.
9 次查看(过去 30 天)
显示 更早的评论
Whether it is possible to implement cotton leaf disease detection using simulink? If possible ,can you suggest your ideas.
0 个评论
回答(3 个)
DEEPAK
about 2 hours 前
model = 'cotton_disease_detector';
new_system(model);
open_system(model);
% Set model parameters
set_param(model, 'Solver', 'FixedStepDiscrete');
set_param(model, 'FixedStep', '0.1');
set_param(model, 'StopTime', 'inf');
0 个评论
DEEPAK
40 minutes 前
% Create new Simulink model
model = 'cotton_disease_detector';
new_system(model);
open_system(model);
% Set model parameters
set_param(model, 'Solver', 'FixedStepDiscrete');
set_param(model, 'FixedStep', '0.1');
set_param(model, 'StopTime', 'inf');
0 个评论
另请参阅
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!