##分布式系统(Distributed System)资料
介绍:这是一篇介绍在动态网络里面实现分布式系统重构的paper.论文的作者(导师)是MIT读博的时候是做分布式系统的研究的,现在在NUS带学生,不仅仅是分布式系统,还有无线网络.如果感兴趣可以去他的主页了解.
| % load the dataset, this is built in to matlab | |
| load fisheriris | |
| % the data is ordered, we want to randomly select 100 points for train, 50 | |
| % for test. This part just generates a random list of array indices. | |
| indices = randperm(150); | |
| train_indices = indices(1:100); | |
| test_indices = indices(101:end); | |
| % meas contains the features, we use our random indices to select a subset |
##分布式系统(Distributed System)资料
介绍:这是一篇介绍在动态网络里面实现分布式系统重构的paper.论文的作者(导师)是MIT读博的时候是做分布式系统的研究的,现在在NUS带学生,不仅仅是分布式系统,还有无线网络.如果感兴趣可以去他的主页了解.