代码搜索结果
找到约 10,000 项符合
Q 的代码
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
function [a]=Q(rx_symbol,modulation)
if ~isempty(findstr(modulation, 'BPSK'))
%BPSK
a = real(rx_symbol);
elseif ~isempty(findstr(modulation, 'QPSK'))
% QPSK
soft_bits = zeros(2*size(rx_symb
q.h
#ifndef Q_HEADER
#define Q_HEADER
#include
#include
typedef struct queue_type {
int front, end, len, size;
void *(*get)(struct queue_type *qt);
void *(*put)(struct queue_t
q.c
#include "q.h"
q_t *qtmalloc(int initl) {
//initl should be 64...
q_t *q;
q = (q_t *)malloc(sizeof(q_t));
q->front=0;
q->end=0;
q->len=0;
q->size = initl;
q->q = (void **)malloc(si
q.java
// Decompiled by Jad v1.5.7g. Copyright 2000 Pavel Kouznetsov.
// Jad home page: http://www.geocities.com/SiliconValley/Bridge/8617/jad.html
// Decompiler options: packimports(3) fieldsfirst ansi
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