代码搜索结果
找到约 10,000 项符合
Power 的代码
convert_sigmonial_to_sdpfun.m
function [model,changed] = convert_sigmonial_to_sdpfun(model)
% Always add this dummy struct
model.high_monom_model = [];
% Assume we don't do anything
changed = 0;
found_and_converted = []
convert_polynomial_to_sdpfun.m
function [model,changed] = convert_polynomial_to_sdpfun(model)
% Assume we don't do anything
changed = 0;
found_and_converted = [];
if any(model.variabletype > 2)
% Bugger...
changed
xminigol.grm
userdefined domains PROCID
productions
EXP = EXP plus EXP -> plus(EXP,EXP),
EXP minus EXP -> minus(EXP,EXP)
--
EXP mult EXP -> mult(EXP,EXP),
EXP div EXP -> div(EXP,EXP)
xpars.grm
productions
EXP = EXP plus EXP -> plus(EXP,EXP),
EXP minus EXP -> minus(EXP,EXP)
--
EXP mult EXP -> mu
3_4_4.c
//用递归调用的方式,计算x的n次方幂:
#include
unsigned long power(int x,int n) reentrant
{
unsigned long p;
for (p=1L;n>0;--n)
p*=x;
return(p);
}
main ()
{
int x,n;
input(x,n); //调用输入函数(略)输
automat.pin
-- Copyright (C) 1991-2004 Altera Corporation
-- Any megafunction design, and related netlist (encrypted or decrypted),
-- support information, device programming or simulation file, and a
piso.pin
-- Copyright (C) 1991-2004 Altera Corporation
-- Any megafunction design, and related netlist (encrypted or decrypted),
-- support information, device programming or simulation file, and a
ssj_reqi.m
% Use this input file to excite function "ssj_req"
clear all
pt = 50.0e+3; % peak power in Watts
g = 35.0; % antenna gain in dB
freq = 5.6e+9; % radar operating frequency in Hz
sigma =
mpsplot.c
#include
#include
#include
#include "msp.h"
void mpsplot(float psdr[],float psdi[],int mfre,float ts)
{
/*----------------------------------------------------------
usermanager.cs
using System;
using System.Data;
using System.Data.SqlClient;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
us