How to plot a graph for this program? and we are facing issue with the below attached file.

1 次查看(过去 30 天)
clc; clear all; close all; A1=load('E:\s07.mat); x=1:8064; labels_1=a1.labels; data_1=a1.data; y1=data_1(1,39,:); plot(x,y1);
We are trying to plot a data with more than 2 dimensions but matlab fails to display it.tell me how to plot a data with 1x1x8064 format

回答(1 个)

MSA
MSA 2021-2-26
编辑:MSA 2021-2-26
I am not sure what you are trying to plot. But, you can try in the following way:
plot(x,y1(1,1,value)) % Here, Substitute value with any numbers between 1 to 8064

类别

Help CenterFile Exchange 中查找有关 Line Plots 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by