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
約7時間 前
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
約6時間 前
% 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!