代码搜索结果
找到约 10,000 项符合
2 的代码
tceps2c2.m
function [ret,x0,str,ts,xts]=tceps2c2(t,x,u,flag);
%TCEPS2C2 is the M-file description of the SIMULINK system named TCEPS2C2.
% The block-diagram can be displayed by typing: TCEPS2C2.
%
% SYS=TCEP
shiti2_4_2.cpp
#include
class Cube
{
public:
Cube()
{
length=width=high=1;
cout
shiti2_5_2.cpp
#include
template
void swap(T &x,T &y)
{
T z;
z=x;x=y;y=z;
}
void main()
{
int a,b;
couta>>b;
swap(a,b);
cout
fem2dt2.m
clear all;
clc;
n = 4;
h = 1./ n;
nsq = n*n;
A = zeros(nsq,nsq);
B = zeros(nsq,1);
for j=1:1:n % Outer loop over y
yj_1 = (j-1)*h;
yj = j*h;
c12-2-2.cpp
#include
#include
using namespace std;
class Student
{public:
Student(int,string,float);
virtual void display();
protected:
int num;
string name;
float
c14-2-2.cpp
#include
using namespace std;
int main()
{void f1();
try
{f1();}
catch(double)
{cout
c7-2-2.cpp
#include
#include
using namespace std;
struct Person
{ string name;
int count;
};
int main()
{Person leader[3]={"Li",0,"Zhang",0,"Fun",0};
int i,j;
string leade
c10-2-2.cpp
#include
using namespace std;
class Complex
{public:
Complex(){real=0;imag=0;}
Complex(double r,double i){real=r;imag=i;}
Complex operator + (Complex &c2);
void display(