代码搜索结果
找到约 10,000 项符合
Q 的代码
q.prg
quit
q.css
.qlh {
BACKGROUND: url(qlh.png) repeat-x; HEIGHT: 27px
}
.qlh A {
BORDER-RIGHT: #9dcded 1px solid; PADDING-RIGHT: 15px; DISPLAY: block; PADDING-LEFT: 15px; FLOAT: left; PADDING-BOTTOM: 0px; FONT
q.m
function y=q(x)
y=sin(x)./x;
q.lst
C51 COMPILER V8.08 Q 05/09/2008 17:57:19 PAGE 1
C51 COMPILER V8.08, COMPILATION OF MODULE Q
OBJECT MODULE PLACED IN q.OBJ
q.h
#ifndef __OS_Q_H__
#define __OS_Q_H__
extern uint8 OS_Task_Q_List;
void * OSTaskWaitMsg(uint8 * err,uint8 Timeout) reentrant;
uint8 OSTaskSendMsg(void * msg,uint8 i) reentrant ;
q.c
#include
#include "os_core.h"
#include "main.h"
#include "task_switch.h"
#include "sem.h"
#include "q.h"
#include "uart.h"
uint8 OS_Task_Q_List;
/////////////////////////////
q.c
int array[10];
main()
{
char i;
i=4;
i=4;
i=4;
i=4;
array[i++] = 4;
}
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));