Ошибки при использовании tenorlab с октавой
В https://tensorlab.net/doc/installation.html говорится, что можно использовать тензорный лабаз с октавой новее, чем 3.8 . Я использую 5.1.0 и имею проблемы с:
>>H = hankelize(1:7,'full',false);
error: hankelize: operator *: nonconformant arguments (op1 is 1x101, op2 is 0x0)
error: called from
hankelize at line 143 column 25
и аналогично с:
>> % Generate pseudorandom factor matrices U0 and their associated full tensor T.
>> size_tens = [7 8 9]; R = 4;
>> U = cpd_rnd(size_tens,R);
>> T = cpdgen(U);
>> Uhat = cpd(T,R);
error: binary operator '*' not implemented for 'matrix' by 'scalar struct' operations
error: called from
mlsvd_rsi at line 53 column 11
cpd at line 276 column 11
А что я могу сделать?