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

9 visualizaciones (últimos 30 días)
Whether it is possible to implement cotton leaf disease detection using simulink? If possible ,can you suggest your ideas.

Respuestas (3)

DEEPAK
DEEPAK hace alrededor de 2 horas
Simulink Model for Cotton Disease Identification

DEEPAK
DEEPAK hace alrededor de 2 horas
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');

DEEPAK
DEEPAK hace alrededor de 1 hora
% 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');

Categorías

Más información sobre Agriculture en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by