Multiplying structure array with a scaler

23 Ansichten (letzte 30 Tage)
Aldrich Dias
Aldrich Dias am 22 Mär. 2021
Beantwortet: Matt J am 22 Mär. 2021
I have Data.mat file that is a 1x365 structure array and i would like to multiply all the values of the 4th column by 2 and store them in to a variable.

Akzeptierte Antwort

Matt J
Matt J am 22 Mär. 2021
If you mean you want to multiply all the fields by 2,
s0.a=1;s0.b=2;s0.c=3 %example struct
s0 = struct with fields:
a: 1 b: 2 c: 3
s=structfun(@(f)2*f, s0,'uni',0)
s = struct with fields:
a: 2 b: 4 c: 6

Weitere Antworten (0)

Kategorien

Mehr zu Structures finden Sie in Help Center und File Exchange

Produkte


Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by