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
In R, I save R object as list of list. For example, bias$normal$alpha and save it to .mat (by R.matlab 3.6.2). However, the alpha is missing in MATLAB after loading such .mat.
EXAMPLE in R:
bias = list()
bias$normal$alpha = 1
require("R.matlab")
writeMat("test.mat",bias=bias)
In Matlab:
load('test.mat')
bias.normal.alpha
Reference to non-existent field 'alpha'.
The text was updated successfully, but these errors were encountered:
In R, I save R object as list of list. For example,
bias$normal$alpha
and save it to .mat (by R.matlab 3.6.2). However, thealpha
is missing in MATLAB after loading such .mat.EXAMPLE in R:
bias = list()
bias$normal$alpha = 1
require("R.matlab")
writeMat("test.mat",bias=bias)
In Matlab:
load('test.mat')
bias.normal.alpha
The text was updated successfully, but these errors were encountered: