- Extract the values of the properties from the 'objectDetection' class and store them in a vector.
- Pass this vector as the output of the 'MATLAB Function' Block.
A top-level output parameter containing a class is not supported in MATLAB Function Block. Output parameter 'mes' contains a class.
조회 수: 14 (최근 30일)
이전 댓글 표시
A top-level output parameter containing a class is not supported in MATLAB Function Block. Output parameter 'mes' contains a class.
댓글 수: 0
답변 (1개)
Tejas
2024년 11월 11일 6:12
Hello Bhavik,
The issue mentioned above occurs because a class is not a supported data type for the output port of a 'MATLAB Function' Block. For details on supported data types for the output port, refer to this documentation: https://www.mathworks.com/help/simulink/slref/matlabfunction.html.
Assuming the properties of the 'objectDetection' class are of a data type supported by the 'MATLAB Function' Block output port, try this workaround to resolve the issue:
Here is an example code snippet:
function mes = my_func(time, color)
detection = objectDetection(time, color);
mes = [detection.Time detection.Color detection.Measurement];
end
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Simulink Functions에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!