Whether it is possible to implement cotton leaf disease detection using simulink? If possible ,can you suggest any ideas.
9 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Whether it is possible to implement cotton leaf disease detection using simulink? If possible ,can you suggest your ideas.
0 Commenti
Risposte (3)
DEEPAK
circa 9 ore fa
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 Commenti
DEEPAK
circa 8 ore fa
% 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 Commenti
Vedere anche
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!