Al momento, stai seguendo questo contributo
- Vedrai gli aggiornamenti nel tuo feed del contenuto seguito
- Potresti ricevere delle email a seconda delle tue preferenze per le comunicazioni
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'
Cita come
Dave (2026). addStructs (https://it.mathworks.com/matlabcentral/fileexchange/42332-addstructs), MATLAB Central File Exchange. Recuperato .
Riconoscimenti
Ispirato: rookpoly(Pcoef)
Informazioni generali
- Versione 1.0.0.0 (1,55 KB)
Compatibilità della release di MATLAB
- Compatibile con qualsiasi release
Compatibilità della piattaforma
- Windows
- macOS
- Linux
| Versione | Pubblicato | Note della release | Action |
|---|---|---|---|
| 1.0.0.0 |
