To increase life time fuzzy using

源代码在线查看: input.h

软件大小: 36 K
上传用户: lingyun579
关键词: increase fuzzy using life
下载地址: 免注册下载 普通下载 VIP

相关代码

				#ifndef __INPUTS
				#define __INPUTS
				
				#include 
				#include "member.h"
				
				using namespace std;
				
				class input{
				 public:
				    input();
				    ~input();
				    void set_name(string);
				    string get_name();
				    void set_member(string,float,float,float);  // triangular
				    void set_member(string,float,float,float,float); // trapeze
				    float get(int,float);
				    void calc(float);
				    string getm_name(int);
				    vector mu;
				 private:
				    string name;
				    vector m;
				};
				
				#endif
							

相关资源