Whether it is possible to implement cotton leaf disease detection using simulink? If possible ,can you suggest any ideas.

Whether it is possible to implement cotton leaf disease detection using simulink? If possible ,can you suggest your ideas.

Answers (3)

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');
% 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');

Categories

Find more on Agriculture in Help Center and File Exchange

Products

Asked:

on 23 Aug 2018

Answered:

on 17 Dec 2025

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!