资源简介
This is simulation of leader follower control system.
代码片段和文件信息
function [features targets label W] = Leader_Follower(train_features train_targets params region plot_on)
%Reduce the number of data points using the basic leader-follower clustering algorithm
%Inputs:
% train_features - Input features
% train_targets - Input targets
% params - Algorithm parameters: [[Min distance to connect Rate of convergence]]
% region - Decision region vector: [-x x -y y number_of_points]
% plot_on - Plot stages of the algorithm
%
%Outputs
% features - New features
% targets - New targets
% label - The labels given for each of the original features
% W - Weights matrice
if (nargin < 5)
plot_on = 0;
end
[theta eta] = process_params(params);
[DL] = size(train_features);
相关资源
- Cellular-Neural-Network 细胞神经网络(C
- DFIG_control_strategy 双馈发电机的控制策
- PIDNN 将人工神经网络用于PID参数调节
- DEAD-beat-microprocessor-control--
- UAV-Flight-Control-System :对某型无人机的
- OptimalControlOfWindPowerGeneration 《风力发
- robust-control-of-permanentmagnet 以电动小汽
- cn551524 微型光伏并网逆变器
- Fuzzy-PI-control-of-PMSM 控制系统采用经典
- PMSM-DTC-Ccontrol 永磁同步电机直接转矩
- Control-Strategy 。归纳和讨论了智能微电
- PSO_Load-Frequency-Control
- pso--PID 基于粒子群算法的PID控制器优
- droop_control 微电网中下垂控制的Mtala
- CONTROL2675774
- DFIG 双馈风力发电机组功率解耦控制系
- APF 有源电力滤波器可以使用的模型
- Microgrid-inverter-control 微电网逆变器控
- two_way_control 为超级电容设计的双向充
- single_cell-PowerControl D2D单小区下的功率
- D2D-underlay-power-control-
- mpc pmsm simple
- DAB_PI-control
- droop_best 一个基于下垂控制的微电网模
- Droop_control 关于微电网中下垂控制的仿
- deadbeatcontrol
- PQ_Control 基于LCL的三相逆变器并网恒功
- 微电网下垂控制
- ACC
- LQR-controller 基于遗传算法的LQR控制器
评论
共有 条评论