The function magia_read_specs(specs_file) in magia_read_specs.m stores numeric values from the text file as char. This causes problems, such as '0' being evaluated as true, where 0 should be false, e.g. in magia_processor.m. I think the frames are also loaded as char and not converted to the expected format.
The function
magia_read_specs(specs_file)
inmagia_read_specs.m
stores numeric values from the text file as char. This causes problems, such as'0'
being evaluated as true, where0
should be false, e.g. inmagia_processor.m
. I think the frames are also loaded aschar
and not converted to the expected format.