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.

답변 (3개)

DEEPAK
DEEPAK 대략 9시간 전
Simulink Model for Cotton Disease Identification

DEEPAK
DEEPAK 대략 9시간 전
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 대략 8시간 전
% 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');

카테고리

Help CenterFile Exchange에서 Agriculture에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by