代码搜索结果
找到约 10,000 项符合
Q 的代码
q.m
function [y]=Q(x)
% [y]=Q(x)
% Q evaluates the Q-function.
% y = 1/sqrt(2*pi) * integral from x to inf of exp(-t^2/2) dt.
% y = (1/2) * erfc(x/sqrt(2)).
y=(1/2)*erfc(x/sqrt(2));
q.java
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class TriangleMethod extends JFrame
implements ActionListener {
private JBtton button;
private JPanel panel;
publi
q.m
% File: q.m
% Software given here is to accompany the textbook: W.H. Tranter,
% K.S. Shanmugan, T.S. Rappaport, and K.S. Kosbar, Principles of
% Communication Systems Simulation with Wireless App
q.m
% File: q.m
% Software given here is to accompany the textbook: W.H. Tranter,
% K.S. Shanmugan, T.S. Rappaport, and K.S. Kosbar, Principles of
% Communication Systems Simulation with Wireless App
q.m
% File: q.m
% Software given here is to accompany the textbook: W.H. Tranter,
% K.S. Shanmugan, T.S. Rappaport, and K.S. Kosbar, Principles of
% Communication Systems Simulation with Wireless App
q.m
% File: q.m
% Software given here is to accompany the textbook: W.H. Tranter,
% K.S. Shanmugan, T.S. Rappaport, and K.S. Kosbar, Principles of
% Communication Systems Simulation with Wireless App
q.h
#define DATA_Q_SIZE 288
#ifdef __LOAD_SDRAM
static CCHAR _cData_Q[DATA_Q_SIZE] = {
0x60, 0xfa, 0x8e, 0x2e, 0x60, 0x02, 0x00, 0x43, 0x47, 0x17, 0xe6, 0x9f, 0x9c, 0x37, 0x0d, 0x7e, 0xae, 0x69, 0x38,
q.h
#define DATA_Q_SIZE 288
#ifdef __LOAD_SDRAM
static CCHAR _cData_Q[DATA_Q_SIZE] = {
0x60, 0xfa, 0x8e, 0x2e, 0x60, 0x02, 0x00, 0x43, 0x47, 0x17, 0xe6, 0x9f, 0x9c, 0x37, 0x0d, 0x7e, 0xae, 0x69, 0x38,
8q
int up[15], down[15], rows[8], x[8];
int queens(), print();
main()
{
int i;
for (i = 0; i < 15; i++)
up[i] = down[i] = 1;
for (i = 0; i < 8; i++)
rows[i] = 1;
queens(0);
return 0;
}
queens