이 페이지는 기계 번역을 사용하여 번역되었습니다. 최신 내용을 영문으로 보려면 여기를 클릭하십시오.
Simulink.CloneDetection.Settings 클래스
네임스페이스: Simulink.CloneDetection
설명
Simulink.CloneDetection.findClones
함수를 호출할 때 특정 조건을 지정하려면 Simulink.CloneDetection.Settings
클래스의 개체를 사용하세요.
생성
설명
Simulink.CloneDetection.Settings
은 Simulink.CloneDetection.Settings
클래스의 객체를 생성합니다.
속성
IgnoreSignalName
— 신호 이름의 차이 무시
false
또는 0
| true
또는 1
복제를 감지하는 동안 신호 이름 차이를 무시하는 옵션으로 false
또는 true
로 지정됩니다.
IgnoreBlockProperty
— 블록 속성의 차이 무시
false
또는 0
| true
또는 1
복제를 감지하는 동안 블록 속성 차이를 무시하는 옵션으로 false
또는 true
로 지정됩니다.
ExcludeModelReferences
— 모델 참조 제외
false
또는 0
| true
또는 1
false
또는 true
로 지정되는 검색 복제 패턴에서 모델 참조 블록을 제외하는 옵션입니다.
ExcludeLibraryLinks
— 라이브러리 링크 제외
false
또는 0
| true
또는 1
false
또는 true
로 지정되는 검색 복제 패턴에서 라이브러리 링크를 제외하는 옵션입니다.
ParamDifferenceThreshold
— 패턴을 복제로 간주하도록 허용된 매개변수 차이의 최대 수
uint32
패턴을 복제로 간주하도록 허용된 차이점 수로, uint32
정수로 지정됩니다.
ReplaceExactClonesWithSubsystemReference
— 정확한 복제본을 하위 시스템 참조 블록으로 교체
false
또는 0
| true
또는 1
정확한 복제본을 false
또는 true
로 지정된 하위 시스템 참조 블록으로 대체하는 옵션입니다.
Libraries
— 라이브러리 경로
character vector
| array of character vectors
| strings
모델의 패턴을 바꾸는 데 사용되는 라이브러리의 경로로, 문자형 벡터 또는 문자형 벡터로 구성된 배열로 지정됩니다.
Folders
— 폴더 경로
character vector
| array of character vectors
| strings
모델이 포함된 폴더의 경로로, 문자형 벡터 또는 문자형 벡터로 구성된 배열로 지정됩니다.
FindClonesRecursivelyInFolders
— 폴더에서 반복적으로 복제본 찾기
false
또는 0
| true
또는 1
false
또는 true
로 지정되는 지정된 폴더 내에 있는 폴더에서 모델의 복제본을 찾는 옵션입니다.
이 속성은 Folders
에 입력을 제공하는 경우에만 적용됩니다.
DetectClonesAcrossModel
— 모델 전체에서 클론을 감지하는 옵션
false
또는 0
| true
또는 1
false
또는 true
로 지정되는 모델 전체의 어느 위치에서든 복제본을 감지하는 옵션입니다.
MinimumRegionSize
— 최소 블록 수
uint32
패턴을 복제로 간주하는 데 필요한 영역의 최소 블록 수로, uint32
정수로 지정됩니다.
이 속성은 DetectClonesAcrossModel
이 true
인 경우에만 적용됩니다.
MinimumCloneGroupSize
— 최소 복제 패턴 발생 횟수
uint32
패턴을 클론 그룹으로 간주하는 데 필요한 최소 클론 패턴 발생 횟수로, uint32
정수로 지정됩니다.
이 속성은 DetectClonesAcrossModel
이 true
인 경우에만 적용됩니다.
ExcludeInactiveRegions
— 비활성 또는 주석 처리된 지역 제외
false
또는 0
| true
또는 1
false
또는 true
로 지정되는 검색 복제 패턴에서 비활성 영역이나 주석 처리된 영역을 제외하는 옵션입니다.
DataTypeCheck
— 데이터 유형 확인
false
또는 0
| true
또는 1
라이브러리 하위 시스템의 가져오기 데이터 유형이 모델에 있는 복제본의 가져오기 데이터 유형과 일치하는지 여부를 결정하는 옵션으로 false
또는 true
로 지정됩니다.
메서드
공개 방법
addLibraries | 하위 시스템이 포함된 라이브러리 추가 |
removeLibraries | 라이브러리 제거 |
addFolders | 모델이 포함된 폴더 추가 |
removeFolders | 폴더 제거 |
예제
복제 감지 작업을 위한 설정 개체 생성
Simulink.CloneDetection.Settings
클래스에서cloneDetectionSettings
객체를 생성합니다.cloneDetectionSettings = Simulink.CloneDetection.Settings();
복제를 감지하는 동안 신호 이름 차이를 무시하려면
IgnoreSignalName
의 속성을true
로 변경합니다.cloneDetectionSettings.IgnoreSignalName = true
cloneDetectionSettings = Settings with properties: IgnoreSignalName: 1 IgnoreBlockProperty: 0 ExcludeModelReferences: 0 ExcludeLibraryLinks: 0 SelectedSystemBoundary: '' FindClonesRecursivelyInFolders: 1 ParamDifferenceThreshold: 50 ReplaceExactClonesWithSubsystemReference: 0 Libraries: {} Folders: {} DetectClonesAcrossModel: 0 ExcludeInactiveRegions: 0 DataTypeCheck: 0
버전 내역
R2021a에 개발됨
MATLAB 명령
다음 MATLAB 명령에 해당하는 링크를 클릭했습니다.
명령을 실행하려면 MATLAB 명령 창에 입력하십시오. 웹 브라우저는 MATLAB 명령을 지원하지 않습니다.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)