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
the following adaptation of test_amen_laplace.m triggers this error.
error: 'fcnchk' undefined near line 17, column 18
error: called from
tt_iterchk at line 17 column 16
tt_gmres at line 29 column 22
test_amen_laplace at line 31 column 20
apparently you missed to include a function in the github repo.
thanks a lot,
N
% Run file to produce the Poisson experiment from the paper
% S. Dolgov, D. Savostyanov,
% "Alternating minimal energy methods for linear systems in higher
% dimensions"
d = 16;
L = 6;
%!!! Last run: on dx360-11, E5-2670 0 @ 2.60GHz !!!!!!!
tol = 1e-6;
nswp = 5;
kickrank = 4;
tol_gmres = 1e-3; % I would not set anything lower
% Matrix, RHS
A = tt_qlaplace_dd(L*ones(1,d))*(2^L+1)^2;
A = tt_reshape(A, 2^L*ones(d,2));
f = tt_ones(2^L, d);
% Reference solution
[U_gmres,td_gmres] = tt_gmres(core(A), core(f), tol_gmres, 4, 15, tol_gmres, tol_gmres, [], [], [], [], 3);
The text was updated successfully, but these errors were encountered:
Hello,
this looks like a broken Matlab installation. fcnchk is a part of Matlab's funfun, not TT-Toolbox. On my laptop, for example, it's stored in /home/dc/ml22binst/toolbox/matlab/funfun/fcnchk.m
Best,
Sergey.
Dears,
the following adaptation of
test_amen_laplace.m
triggers this error.apparently you missed to include a function in the github repo.
thanks a lot,
N
The text was updated successfully, but these errors were encountered: