⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 initialdistribute.cpp

📁 连轧过程控制仿真程序
💻 CPP
字号:
// initialdistribute.cpp: implementation of the initialdistribute class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "2level.h"
#include "initialdistribute.h"

#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

initialdistribute::initialdistribute()
{

}

initialdistribute::~initialdistribute()
{

}
double *initialdistribute::distribute(double H,double h,int m,double B)
{
	
	double *p;
	double m_h[5];
	m_h[0]=3.29;
	m_h[1]=2.47;
	m_h[2]=1.93;
	m_h[3]=1.58;
	m_h[4]=1.5;

	p=&m_h[0];
	return p;


}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -