程序代写

HW10

ECE 380 Introduction to Communication Systems Homework Assignment 10 Due: No need to submit Problem 1. In an M-ary ASK digital communication system, the channel has bandwidth 1400 Hz. Select a symbol rate and a signal constellation size to achieve a 9600 bit per second error-free signal transmis- sion. Problem 2. test. (a) Find the

HW10 Read More »

ECE 380 HW1

ECE 380 Introduction to Communication Systems Homework Assignment 1 Due: 16:00pm Tuesday, Feb. 7, 2023 Problem 1. Find the inverse Fourier transforms of G(f ) for the spectra in Figure 1 (a) and (b). Note: G(f) = |G(f)|ej∠G(f). Figure 1: Signals for Problem 1. Problem 2. Find the Fourier transforms of the signals g1(t) and

ECE 380 HW1 Read More »

ECE380 Winter 2023 syllabus

ECE 380 Introduction to Communication Systems Winter 2023 – January 05 to April 12 Class time: Tuesday, Thursday 11:00-12:20 Location: NRE 2-001 Instructor: Xingyu Li, PhD, 780-492-8571 11-209 Donadeo Innovation Centre For Engineering Office Hours: Tuesday/Thrusday 12:30pm-1:30pm Course Description: *3.8 (fi 8) (either term or Spring/Summer, 3-0-3/2) Basics of analog communication: amplitude, angle, and analog

ECE380 Winter 2023 syllabus Read More »

CIS 2400 lc4 hash

/************************************************************************/ /* File Name : lc4_hash.c */ /* Purpose : This file contains the definitions for the hash table */ /* */ /* Author(s) : tjf */ /************************************************************************/ #include #include #include “lc4_hash.h” * creates a new hash table with num_of_buckets requested lc4_memory_segmented* create_hash_table (int num_of_buckets, int (*hash_function)(void* table, void *key) ) // allocate a single

CIS 2400 lc4 hash Read More »

CIS 2400 lc4

/************************************************************************/ /* File Name : lc4.c */ /* Purpose : This file contains the main() for this project */ /* main() will call the loader and disassembler functions */ /* */ /* Author(s) : tjf and you */ /************************************************************************/ #include #include #include “lc4_memory.h” #include “lc4_hash.h” #include “lc4_loader.h” #include “lc4_disassembler.h” /* program to mimic pennsim loader

CIS 2400 lc4 Read More »

CIS 2400 lc4 memory

/************************************************************************/ /* File Name : lc4_memory.c */ /* Purpose : This file implements the linked_list helper functions */ /* to manage the LC4 memory */ /* */ /* Author(s) : tjf and you */ /************************************************************************/ #include #include #include “lc4_memory.h” * adds a new node to linked list pointed to by head int add_to_list (row_of_memory** head,

CIS 2400 lc4 memory Read More »