Currently adjoint vectors from Julia are converted to structs in MATBAL instead of a row-vector (which would make more sense). Version: Julia 1.7.1 Package Version: MATLAB.jl v0.8.2 ## Minimum Example ```julia # Create an adjoint vector C = [1.0, 2.0]' # Creates a struct mat""" a = $(C) a """ # creates a row vector mat""" a = $(C')' a """ ```