Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 3 种不同的心跳,正常、左阻滞和右阻滞。我每个有 20 个节拍。我想对 60 次心跳进行训练,然后测试几个不同的心跳。我想让程序告诉我它是正常的,左块还是右块。我所拥有的只是一个 60 x 300 矩阵,其中前 20 行是正常的,然后是左、右块。
我如何制作训练标签?它们必须采用特殊格式,但我不知道如何为培训创建此格式。
我什至给 libsvm 的创建者发了电子邮件,但我还没有收到回音。
有什么地方可以帮助我吗?
假设 1 = 正常,2 = 左,3 = 右,那么标签是
labels = [ones(20,1); 2*ones(20,1); 3*ones(20,1)];