Undefined variable "X" or class "X".

21 次查看(过去 30 天)
Mohammed khalaf
Mohammed khalaf 2018-1-11
I got this error from this code but not sure why even though i just copy it from the mathworks. i have already update my matlab to 2017b.
load JapaneseVowelsTrain
figure
for i = 1:12
subplot(12,1,13-i)
plot(X{1}(i,:));
ylabel(i)
xticklabels('')
yticklabels('')
box off
end
title("Training Observation 1")
subplot(12,1,12)
xticklabels('auto')
xlabel("Time Step")
error:
Undefined variable "X" or class "X".
Error in lstm (line 6)
plot(X{1}(i,:));
any help would be appreciated.

回答(1 个)

Jan
Jan 2018-1-11
编辑:Jan 2018-1-11
JapaneseVowelsTrain does not contain a variable named X: it
contains a variable named XTrain
Why do you ask for "X" again now?
  1 个评论
Mohammed khalaf
Mohammed khalaf 2018-1-11
the previous error was Cell contents reference from a non-cell array object.
now get another error.
Undefined variable "X" or class "X".
I have re-opend the matlab again and the problem solved.
sorry a bit new to matlab that's why i ask the community for help.
thanks anyway

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Axis Labels 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by