Undefined variable "X" or class "X".

20 vues (au cours des 30 derniers jours)
Mohammed khalaf
Mohammed khalaf le 11 Jan 2018
Modifié(e) : per isakson le 11 Jan 2018
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.

Réponses (1)

Jan
Jan le 11 Jan 2018
Modifié(e) : Jan le 11 Jan 2018
JapaneseVowelsTrain does not contain a variable named X: it
contains a variable named XTrain
Why do you ask for "X" again now?
  1 commentaire
Mohammed khalaf
Mohammed khalaf le 11 Jan 2018
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

Connectez-vous pour commenter.

Community Treasure Hunt

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

Start Hunting!

Translated by