Undefined variable "X" or class "X".

21 visualizzazioni (ultimi 30 giorni)
Mohammed khalaf
Mohammed khalaf il 11 Gen 2018
Modificato: per isakson il 11 Gen 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.

Risposte (1)

Jan
Jan il 11 Gen 2018
Modificato: Jan il 11 Gen 2018
JapaneseVowelsTrain does not contain a variable named X: it
contains a variable named XTrain
Why do you ask for "X" again now?
  1 Commento
Mohammed khalaf
Mohammed khalaf il 11 Gen 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

Accedi per commentare.

Community Treasure Hunt

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

Start Hunting!

Translated by