You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I encountered with an error while attempting to save a Brucker measurement together with a background measurement as one MDF. I used the saveasMDF with a keyword for the background file. It failed here
paramsBG[:measIsBGFrame][:] is an array and cannot be assigned with a constant true without .=. Moreover, down the code here is cat(4, params[:measData], paramsBG[:measData]) which also should produce an error.
I ended up implementing that by myself. Here is my implementation in case it is useful for a fix.
I encountered with an error while attempting to save a Brucker measurement together with a background measurement as one MDF. I used the
saveasMDF
with a keyword for the background file. It failed hereMPIFiles.jl/src/Conversion.jl
Line 163 in a6601c3
paramsBG[:measIsBGFrame][:]
is an array and cannot be assigned with a constanttrue
without.=
. Moreover, down the code here iscat(4, params[:measData], paramsBG[:measData])
which also should produce an error.I ended up implementing that by myself. Here is my implementation in case it is useful for a fix.
The text was updated successfully, but these errors were encountered: