これは機能します
A = sym('A%d%d', [2 4])
A =
[ A11, A12, A13, A14]
[ A21, A22, A23, A24]
しかし、これはエラーになります
A = sym('A%d%d%d', [2, 4 ,6])
Error using sym>createCharMatrix (line 2001)
Matrix syntax can only create vectors and
matrices.
Error in sym>convertCharWithOption (line 1960)
s = createCharMatrix(x,a);
Error in sym>tomupad (line 1693)
S = convertCharWithOption(x,a);
Error in sym (line 113)
S.s = tomupad(x,a);
matlabでシンボリック3dテンソルを作成するにはどうすればよいですか?