필터 지우기
필터 지우기

Cannot create a pointer to a struct

조회 수: 4 (최근 30일)
Mikael Agopov
Mikael Agopov 2020년 3월 27일
댓글: Steven Lord 2020년 3월 27일
I never needed to create a pointer in Matlab before, but now I need to create a pointer to a struct.
I tried:
exstr=struct('Value1',10,'Value2',20)
exstr_ptr=libpointer('struct',exstr)
or
exstr_ptr=libpointer('structure',exstr)
Both give an error 'Type not found'.
However, using the same syntax with int or float works fine.
What is the problem

답변 (1개)

Mohammad Sami
Mohammad Sami 2020년 3월 27일
편집: Mohammad Sami 2020년 3월 27일
  댓글 수: 2
Mikael Agopov
Mikael Agopov 2020년 3월 27일
This is only available in matlab2020a?
Steven Lord
Steven Lord 2020년 3월 27일
According to the documentation page libstruct was "Introduced before R2006a" so no, it's not new in release R2020a. The links including R2020a in the URL means they will always refer to the release R2020a version of the documentation page. So if you're using an older release, in case libstruct has changed between your release and release R2020a (I don't remember if it's changed recently) you probably want to refer to your locally installed documentation.

댓글을 달려면 로그인하십시오.

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by