Если я правильно понимаю вашу проблему, вы можете отобразить ее в цикле for с 1 по 256.
newData1 = load('Sub21.mat')
for n=1:256
plot(newdata(n,:,1)) %Plotting n of 256, all 150000 and 1st of the 11 lines
hold on;
plot(newdata(n,:,2))
hold on;
plot(newdata(n,:,3))
hold on;
.
.
.
plot(newdata(n,:,11))
hold on;
xlabel('milisec')
ylabel('voltage')
legend('name1','name2', .... , 'name11')
end
% or maybe two for loops
for n=1:256
for m=1:11
plot(newdata(n,:,m)) %Plotting n of 256, all 150000 and m of the 11 lines
hold on;
end
end
Возможно, вы захотите использовать подзаговор, чтобы не получить 256 цифр.
Можете ли вы отправить некоторые данные?