How do I get the handle of the current system in Simulink model?
조회 수: 34 (최근 30일)
이전 댓글 표시
I am using get(gcs, 'Handle') but it is showing invalid handle.
댓글 수: 0
채택된 답변
Gaganjyoti Baishya
2020년 6월 24일
You cannot use 'get' command to get handle of the system. Use get_param instead.
get_param(gcs, 'Handle')
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!