• Coding and Error Control Review/Recap - Lecture 25Coding and Error Control Review/Recap - Lecture 25

    File Edit View lerminal Tabs tjelp [zulkiflỡvmmachine ns-2.3O]$ ./validate (Validation can take 1-30 hours to run.) Fri Feb 1 12:22:21 PKT 2008 *** ./test-all-simple Tests: tahoel tahoelBytes tahoelRED tahoelREDbytes tahoe2 tahoe3 tahoe3RED tahoe 4 no_bug bug renol reno reno.A reno2 reno3 reno4 reno4a reno5 reno5_nobug telnet delayed phase pha...

    ppt113 trang | Chia sẻ: thucuc2301 | Ngày: 23/11/2020 | Lượt xem: 634 | Lượt tải: 0

  • Software Defined Radio - Lecture 31Software Defined Radio - Lecture 31

    Applications: OpenBTS+GnuRadio+USRP Entrepreneurs mostly emphasize their businesses and infrastructures in settled and developed areas. Low cost, low power, reconfigurable and flexible communication model for those Entrepreneurs ROI (Return on Investment) for MNO's (Mobile Network Operators) GSM to Voice over IP (GSM-2-VoIP), GSM to Conventiona...

    pptx68 trang | Chia sẻ: thucuc2301 | Ngày: 23/11/2020 | Lượt xem: 591 | Lượt tải: 0

  • Coding and Error Control Review/Recap - Lecture 24Coding and Error Control Review/Recap - Lecture 24

    Example – Modulo-2 Arithmetic Method Given D = 1 0 1 0 0 0 1 1 0 1 P = 1 1 0 1 0 1 Find the FCS field Solution: First we note that: The size of the data block D is k = 10 bits The size of P is (n – k + 1) = 6 bits Hence the FCS length is n – k = 5 Total size of the frame T is n = 15 bits Example – Modulo-2 Arith. Method Solution (cont...

    ppt76 trang | Chia sẻ: thucuc2301 | Ngày: 23/11/2020 | Lượt xem: 735 | Lượt tải: 0

  • Cellular Wireless Networks GSM - Lecture 30Cellular Wireless Networks GSM - Lecture 30

    Analogy: Multiplexing Lectures at a learning institute: Frequency Division: takes place in different rooms Time Division: taking turns in a single room Code Division: lectures on different subjects. GSM Location Services 1. Call made to mobile unit (cellular phone) 2. Telephone network recognizes number and gives to gateway MSC 3. MSC can...

    pptx98 trang | Chia sẻ: thucuc2301 | Ngày: 23/11/2020 | Lượt xem: 682 | Lượt tải: 0

  • Coding and Error Control - Lecture 23Coding and Error Control - Lecture 23

    Error Detection Process Transmitter For a given frame, an error-detecting code (check bits) is calculated from data bits Check bits are appended to data bits Receiver Separates incoming frame into data bits and check bits Calculates check bits from received data bits Compares calculated check bits against received check bits Detected error ...

    ppt49 trang | Chia sẻ: thucuc2301 | Ngày: 23/11/2020 | Lượt xem: 623 | Lượt tải: 0

  • Danh sách liên kếtDanh sách liên kết

    Rắn gồm đốt đầu và các đốt thân Khi di chuyển, các đốt thân có thể nằm ngang hoặc dọc Vậy cần ít nhất 3 ảnh Đầu Thân ngang Thân dọc

    pptx66 trang | Chia sẻ: dntpro1256 | Ngày: 23/11/2020 | Lượt xem: 718 | Lượt tải: 0

  • Lớp = Dữ liệu + HàmLớp = Dữ liệu + Hàm

    Sử dụng map thay cho vector để lưu số lần đoán sai mỗi từ map wordIncorrectGuess; Cải tiến tốc độ của Guesser Mỗi lần lọc từ, dùng vector sẽ chậm Thay thế bằng vector các chỉ số từ hợp lệ Mỗi lần chỉ lọc trên các từ hợp lệ của lần đoán trước Không lọc lại từ danh sách từ ban đầu

    pptx52 trang | Chia sẻ: dntpro1256 | Ngày: 23/11/2020 | Lượt xem: 859 | Lượt tải: 0

  • Tìm kiếm và đếmTìm kiếm và đếm

    Có bỏ phần getVowelGuess() được không ? Xử lý trường hợp từ cần đoán không có trong từ vựng, tức là filteredWordList.size() == 0 Kết thúc 1 ván chơi, hỏi có muốn chơi tiếp ? Cho chơi tiếp nếu người chơi đồng ý. Nếu không đoán được từ (guess == 0) hoặc thua cuộc, hỏi từ của người chơi rồi thêm vào vốn từ vựng và ghi xuống file (giúp lần chơi sau...

    pptx54 trang | Chia sẻ: dntpro1256 | Ngày: 23/11/2020 | Lượt xem: 722 | Lượt tải: 0

  • Đồ hoạ với SDLĐồ hoạ với SDL

    Khái niệm đệ quy trong toán học / lập trình Một đối tượng (có tham số) được định nghĩa thông qua chính nó với tham số khác (thường nhỏ hơn) Tổng các số tự nhiên từ 1 đến n: s(n) = n + s(n-1) Giai thừa: factorial(n) = n * factorial(n-1) Fibonaci: fibo(n) = fibo(n-1) + fibo(n-2) Hình fractal đệ quy Self-similarity: each part is a “reduced-size ...

    pptx93 trang | Chia sẻ: dntpro1256 | Ngày: 23/11/2020 | Lượt xem: 808 | Lượt tải: 0

  • Lập trình C - Lecture 6: Applet (Tiếp)Lập trình C - Lecture 6: Applet (Tiếp)

    Giải thích lý do nháy: Mỗi lần gọi repaint() thì update() được gọi update() xoá nội dung cửa sổvà gọi paint() Khắc phục: Vẽ hình vào một khung hình phụ trong bộ nhớ thay vì vẽ trực tiếp ra màn hình. Khi vẽ xong, khung hình phụ được hiển thị ra màn hình trong phương thức paint(). Nạp chồng update() để tránh việc xoá nội dung cửa sổ.

    ppt34 trang | Chia sẻ: dntpro1256 | Ngày: 23/11/2020 | Lượt xem: 722 | Lượt tải: 0