addStructs

버전 1.0.0.0 (1.55 KB) 작성자: Dave
Adds the numeric values in two structures.
다운로드 수: 285
업데이트 날짜: 2013/6/24

라이선스 보기

S = addStructs(S1, S2)

Given two structs S1 and S2, returns a struct S such that
S.<fieldName> = S1.<fieldName> + S2.<fieldName> for all
fieldNames whose corresponding values are both numeric
and the same length in both S1 and S2.

If the values are not numeric or not the same length, the
value from S1 is copied to S.

This function will throw an error if the field names in
S1 and S2 are not the same.

Example:

>> s1

s1 =

a: 1
b: 2
c: [1 2 3]
foo: 'bar'

>> s2

s2 =

a: 1
b: 4
c: 3
foo: 'baz'

>> addStructs(s1, s2)

ans =

a: 2
b: 6
c: [1 2 3]
foo: 'bar'

인용 양식

Dave (2024). addStructs (https://www.mathworks.com/matlabcentral/fileexchange/42332-addstructs), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2012a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Structures에 대해 자세히 알아보기
도움

줌: rookpoly(Pcoef)

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.0.0.0