5.10. merge¶
Merges two FitsArray objects to create another FitsArray.
- FitsArray.merge(self, other: Self) None¶
Merges two
FitsArrayobjects to create anotherFitsArray.Parameters
otherFitsArrayThe other
FitsArrayto append to this one.
5.10.1. Example:¶
from myraflib import FitsArray
fa_1 = FitsArray.sample()
fa_2 = FitsArray.sample()
merged_fa = fa_1.merge(fa_2)