implement to predict "JapaneseVowelsTrain" as the same in mathworks
Show older comments
just trying to predict "JapaneseVowelsTrain" as the same in MathWorks but keep give me any error.
any help please!!
I need the same results as shown in MathWorks
code:
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:
Cell contents reference from a non-cell array object.
Error in lstm (line 7)
plot(X{1}(i,:));
any idea why this error.
your help highly appreciated
Accepted Answer
More Answers (0)
Categories
Find more on 2-D and 3-D Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!