If one wants to save a symbol to a .mat file, this symbol is not stored.
See the example below
using MAT
file = matopen("test.mat","w")
write(file,"symbol",:a_symbol)
close(file)
Matlab output
>> load('test.mat')
>> symbol
symbol =
struct with no fields.