Title: File Transfer client and server
Description: Send or recieve files of any size or type between you and a peer. Displays bytes sent or recieved, return values of send() and recv(), bitrate in KBytes/Sec, and time remaining. SendFile and RecvFile functions can easily be added and used in your own code. I tested it ofcourse, a 73 mb self extracting rar archive from South Korea to Massachusetts at 96KB/s arrived fully operational.
老外的超高效率壓縮,High efficient Data Compression Library for use with Delphi.
Support Rank, ZIP, BZIP and PPM compression algorithms.
Compression ratio more than 1.5-2 times better than ZIP/RAR archiver.
Compression speed up to 8 Mb/Sec (on PIII-600).
This program simulates the bit-error-rate (BER) performance of OSTBC
with L=4 antennas over the frequency flat Rayleigh block fading channel
The code is developed for real orthogonal design, code rate 1/2
modulation- 16 QAM with gray coding resulting in 2 bits/Sec/Hz.
P3.18. An analog signal xa(t) = sin (100πt) is sampled using the following sampling intervals. In
each case plot the spectrum of the resulting discrete-time signal.
Ts= 0.1 ms, Ts= 1 ms, Ts = 0.01 Sec
P3.20. Consider an analog signal xa (t) = sin (2πt), 0 ≤t≤ 1. It is sampled at Ts = 0.01, 0.05,
and 0.1 Sec intervals to obtain x(n).
b) Reconstruct the analog signal ya (t) from the samples x(n) using the sinc interpolation
(use ∆ t = 0.001) and determine the frequency in ya (t) from your plot. (Ignore the end
effects.)
C) Reconstruct the analog signal ya (t) from the samples x (n) using the cubic spline
interpolation and determine the frequency in ya (t) from your plot. (Ignore the end effects.)
-- Hamming Decoder
-- This Hamming decoder accepts an 8-bit Hamming code (produced by the encoder above) and performs single error correction and double error detection.
-- download from: www.pld.com.cn & www.fpga.com.cn
LIBRARY ieee
USE ieee.std_logic_1164.ALL
ENTITY hamdec IS
PORT(hamin : IN BIT_VECTOR(0 TO 7) --d0 d1 d2 d3 p0 p1 p2 p4
dataout : OUT BIT_VECTOR(0 TO 3) --d0 d1 d2 d3
Sec, ded, ne : OUT BIT) --diagnostic outputs
END hamdec
ARCHITECTURE ver1 OF hamdec IS
BEGIN