-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdata.json
2675 lines (2675 loc) · 68.3 KB
/
data.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"coreqs": [
[]
],
"internallink": "Senior Standing - Senior Standing",
"name": "Senior Standing",
"prereqs": [
[
"Junior Standing"
]
],
"title": "Senior Standing"
},
{
"coreqs": [
[]
],
"internallink": "Junior Standing - Junior Standing",
"name": "Junior Standing",
"prereqs": [
[]
],
"title": "Junior Standing"
},
{
"coreqs": [
[]
],
"internallink": "MATH 221 - Calculus I",
"link": "https://wiki.engr.illinois.edu/x/Q7rCCw",
"name": "MATH 221",
"pagetitle": "MATH 221 - Calculus I",
"prereqs": [
[]
],
"title": "Calculus I",
"type": "required"
},
{
"coreqs": [
[]
],
"internallink": "MATH 231 - Calculus II",
"link": "https://wiki.engr.illinois.edu/x/H6HXCw",
"name": "MATH 231",
"pagetitle": "MATH 231 - Calculus II",
"prereqs": [
[
"MATH 221"
]
],
"title": "Calculus II",
"type": "required"
},
{
"coreqs": [
[]
],
"internallink": "MATH 241 - Calculus III",
"link": "https://wiki.engr.illinois.edu/x/1RDzCw",
"name": "MATH 241",
"pagetitle": "MATH 241 - Calculus III",
"prereqs": [
[
"MATH 231"
]
],
"title": "Calculus III",
"type": "required"
},
{
"coreqs": [
[]
],
"internallink": "MATH 286 - Intro to Differential Eq Plus",
"link": "https://wiki.engr.illinois.edu/x/0COfCw",
"name": "MATH 286",
"pagetitle": "MATH 286 - Intro to Differential Eq Plus",
"prereqs": [
[
"MATH 241"
]
],
"title": "Intro to Differential Eq Plus",
"type": "required"
},
{
"coreqs": [
[
"MATH 231"
]
],
"internallink": "PHYS 211 - University Physics, Mechanics",
"link": "https://wiki.engr.illinois.edu/x/3RBbD",
"name": "PHYS 211",
"pagetitle": "PHYS 211 - University Physics, Mechanics",
"prereqs": [
[]
],
"title": "University Physics, Mechanics",
"type": "required"
},
{
"coreqs": [
[
"MATH 241"
]
],
"internallink": "PHYS 212 - University Physics, Electricity and Magnetism",
"link": "https://wiki.engr.illinois.edu/x/ULrCCw",
"name": "PHYS 212",
"pagetitle": "PHYS 212 - University Physics, Electricity and Magnetism",
"prereqs": [
[
"PHYS 211"
]
],
"title": "University Physics, Electricity and Magnetism",
"type": "required"
},
{
"coreqs": [
[
"MATH 241"
]
],
"internallink": "PHYS 213 - University Physics, Thermal Physics",
"link": "https://wiki.engr.illinois.edu/x/A4HoD",
"name": "PHYS 213",
"pagetitle": "PHYS 213 - University Physics, Thermal Physics",
"prereqs": [
[
"PHYS 211"
]
],
"title": "University Physics, Thermal Physics",
"type": "required"
},
{
"coreqs": [
[]
],
"internallink": "PHYS 214 - University Physics, Quantum Physics",
"link": "https://wiki.engr.illinois.edu/x/lI7XCw",
"name": "PHYS 214",
"pagetitle": "PHYS 214 - University Physics, Quantum Physics",
"prereqs": [
[
"PHYS 212"
]
],
"title": "University Physics, Quantum Mechanics",
"type": "required"
},
{
"coreqs": [
[]
],
"internallink": "ECE 110 - Introduction to Electrical and Computer Engineering",
"link": "https://wiki.engr.illinois.edu/x/DJ_UCw",
"name": "ECE 110",
"pagetitle": "ECE 110 - Introduction to Electrical and Computer Engineering",
"prereqs": [
[]
],
"title": "Introduction to Electrical and Computer Engineering",
"type": "required"
},
{
"coreqs": [
[]
],
"internallink": "ECE 190 - Introduction to Computing Systems",
"link": "https://wiki.engr.illinois.edu/x/F5_UCw",
"name": "ECE 190",
"pagetitle": "ECE 190 - Introduction to Computing Systems",
"prereqs": [
[
"ECE 110"
]
],
"title": "Introduction to Computing Systems",
"type": "required"
},
{
"coreqs": [
[
"MATH 286"
]
],
"internallink": "ECE 210 - Analog Signal Processing",
"link": "https://wiki.engr.illinois.edu/x/IZ_UCw",
"name": "ECE 210",
"pagetitle": "ECE 210 - Analog Signal Processing",
"prereqs": [
[
"ECE 110",
"PHYS 212"
]
],
"title": "Analog Signal Processing",
"type": "required"
},
{
"coreqs": [
[]
],
"internallink": "ECE 290 - Computer Engineering I",
"link": "https://wiki.engr.illinois.edu/x/Kp_UCw",
"name": "ECE 290",
"pagetitle": "ECE 290 - Computer Engineering I",
"prereqs": [
[
"ECE 190"
]
],
"title": "Computer Engineering I",
"type": "required"
},
{
"coreqs": [
[]
],
"internallink": "ECE 329 - Fields and Waves I",
"link": "https://wiki.engr.illinois.edu/x/R5_UCw",
"name": "ECE 329",
"pagetitle": "ECE 329 - Fields and Waves I",
"prereqs": [
[
"ECE 210"
]
],
"title": "Fields and Waves I",
"type": "required"
},
{
"coreqs": [
[
"ECE 329"
]
],
"internallink": "ECE 340 - Solid State Electronic Devices",
"link": "https://wiki.engr.illinois.edu/x/LaGUCw",
"name": "ECE 340",
"pagetitle": "ECE 340 - Solid State Electronic Devices",
"prereqs": [
[
"PHYS 214"
]
],
"title": "Solid State Electronic Devices",
"type": "required"
},
{
"coreqs": [
[]
],
"internallink": "RHET 105 - Principles of Composition",
"link": "https://wiki.engr.illinois.edu/x/PqHXCw",
"name": "RHET 105",
"pagetitle": "RHET 105 - Principles of Composition",
"prereqs": [
[]
],
"title": "Principles of Composition",
"type": "required"
},
{
"coreqs": [
[]
],
"internallink": "ECE 304 - Photonic Devices",
"link": "https://wiki.engr.illinois.edu/x/pAdVDQ",
"name": "ECE 304",
"pagetitle": "ECE 304 - Photonic Devices",
"prereqs": [
[
"PHYS 214"
]
],
"subfield": "Microelectronics and Photonics",
"title": "Photonic Devices",
"type": "ECE tech elective"
},
{
"coreqs": [
[
"ECE 313"
]
],
"internallink": "ECE 307 - Techniques for Engrg Decisions",
"name": "ECE 307",
"prereqs": [
[
"ECE 210"
]
],
"title": "Techniques for Engrg Decisions",
"type": "ECE tech elective"
},
{
"cetype": "ECE tech elective",
"coreqs": [
[]
],
"eetype": "3of5",
"internallink": "ECE 310 - Digital Signal Processing",
"link": "https://wiki.engr.illinois.edu/x/XZ_UCw",
"name": "ECE 310",
"pagetitle": "ECE 310 - Digital Signal Processing",
"prereqs": [
[
"ECE 210"
]
],
"subfield": "Signal Processing",
"title": "Digital Signal Processing"
},
{
"coreqs": [
[
"ECE 310"
]
],
"internallink": "ECE 311 - Digital Signal Processing Lab",
"link": "https://wiki.engr.illinois.edu/x/KxyfCw",
"name": "ECE 311",
"pagetitle": "ECE 311 - Digital Signal Processing Lab",
"prereqs": [
[]
],
"subfield": "Signal Processing",
"title": "Digital Signal Processing Lab",
"type": "ECE tech elective"
},
{
"coreqs": [
[]
],
"crosslist": [
"MATH 362"
],
"internallink": "ECE 313 (MATH 362) - Probability with Engrg Applic",
"link": "https://wiki.engr.illinois.edu/x/Qp_UCw",
"name": "ECE 313",
"nocredit": [
"MATH 461"
],
"pagetitle": "ECE 313 (MATH 362) - Probability with Engrg Applic",
"prereqs": [
[
"ECE 210"
]
],
"title": "Probability with Engrg Applic",
"type": "required"
},
{
"coreqs": [
[]
],
"crosslist": [
"ECE 316"
],
"internallink": "PHIL 316 (ECE 316) - Ethics and Engineering",
"name": "PHIL 316",
"prereqs": [
[
"RHET 105",
"Junior Standing"
]
],
"title": "Ethics and Engineering",
"type": "elective"
},
{
"cetype": "ECE tech elective",
"coreqs": [
[]
],
"eetype": "3of5",
"internallink": "ECE 330 - Power Circuits and Electromechanics",
"link": "https://wiki.engr.illinois.edu/x/JaGUCw",
"name": "ECE 330",
"pagetitle": "ECE 330 - Power Circuits and Electromechanics",
"prereqs": [
[
"ECE 210"
]
],
"subfield": "Power and Energy Systems",
"title": "Power Circuits and Electromechanics"
},
{
"coreqs": [
[]
],
"internallink": "ECE 333 - Green Electric Energy",
"link": "https://wiki.engr.illinois.edu/x/NwTPCw",
"name": "ECE 333",
"pagetitle": "ECE 333 - Green Electric Energy",
"prereqs": [
[
"ECE 210"
]
],
"subfield": "Power and Energy Systems",
"title": "Green Electric Energy",
"type": "ECE tech elective"
},
{
"cetype": "ECE tech elective",
"coreqs": [
[]
],
"eetype": "3of5",
"internallink": "ECE 342 - Electronic Circuits",
"link": "https://wiki.engr.illinois.edu/x/MKGUCw",
"name": "ECE 342",
"pagetitle": "ECE 342 - Electronic Circuits",
"prereqs": [
[
"ECE 210"
]
],
"subfield": "Integrated Circuits and Systems",
"title": "Electronic Circuits"
},
{
"coreqs": [
[
"ECE 342"
]
],
"internallink": "ECE 343 - Electronic Circuits Laboratory",
"link": "https://wiki.engr.illinois.edu/x/xQFeDQ",
"name": "ECE 343",
"pagetitle": "ECE 343 - Electronic Circuits Laboratory",
"prereqs": [
[]
],
"subfield": "Integrated Circuits and Systems",
"title": "Electronic Circuits Laboratory",
"type": "ECE tech elective / lab"
},
{
"cetype": "ECE tech elective",
"coreqs": [
[]
],
"eetype": "3of5",
"internallink": "ECE 350 - Fields and Waves II",
"link": "https://wiki.engr.illinois.edu/x/NKGUCw",
"name": "ECE 350",
"pagetitle": "ECE 350 - Fields and Waves II",
"prereqs": [
[
"ECE 329"
]
],
"subfield": "Electromagnetics, Optics and Remote Sensing",
"title": "Fields and Waves II"
},
{
"coreqs": [
[]
],
"internallink": "ECE 361 - Fundamentals of Digital Communications",
"link": "https://wiki.engr.illinois.edu/x/TZ_UCw",
"name": "ECE 361",
"pagetitle": "ECE 361 - Fundamentals of Digital Communications",
"prereqs": [
[
"ECE 210",
"ECE 313"
]
],
"subfield": "Communications",
"title": "Fundamentals of Digital Communications",
"type": "ECE tech elective"
},
{
"coreqs": [
[]
],
"crosslist": [
"BIOE 380"
],
"internallink": "ECE 380 (BIOE 380) - Biomedical Imaging",
"link": "https://wiki.engr.illinois.edu/x/Uw6rCw",
"name": "ECE 380",
"pagetitle": "ECE 380 (BIOE 380) - Biomedical Imaging",
"prereqs": [
[
"MATH 286"
],
[
"MATH 285"
]
],
"subfield": "Biomedical Imaging, Bioengineering, and Acoustics",
"title": "Biomedical Imaging",
"type": "ECE tech elective"
},
{
"coreqs": [
[]
],
"internallink": "ECE 385 - Digital Systems Laboratory",
"link": "https://wiki.engr.illinois.edu/x/UZ_UCw",
"name": "ECE 385",
"pagetitle": "ECE 385 - Digital Systems Laboratory",
"prereqs": [
[
"ECE 290",
"ECE 110"
]
],
"title": "Digital Systems Laboratory",
"type": "required"
},
{
"cetype": "required",
"coreqs": [
[]
],
"eetype": "3of5 / lab",
"internallink": "ECE 391 - Computer Systems Engineering",
"link": "https://wiki.engr.illinois.edu/x/VZ_UCw",
"name": "ECE 391",
"pagetitle": "ECE 391 - Computer Systems Engineering",
"prereqs": [
[
"ECE 290"
]
],
"subfield": "Computer Science: Systems",
"title": "Computer Systems Engineering"
},
{
"coreqs": [
[]
],
"internallink": "ECE 395 - Advanced Digital Systems Laboratory",
"link": "https://wiki.engr.illinois.edu/x/8bXCCw",
"name": "ECE 395",
"pagetitle": "ECE 395 - Advanced Digital Systems Laboratory",
"prereqs": [
[
"ECE 385"
]
],
"subfield": "Computer Engineering: Architecture / Digital Logic",
"title": "Advanced Digital Systems Laboratory",
"type": "ECE tech elective / lab"
},
{
"coreqs": [
[]
],
"internallink": "ECE 402 - Electronic Music Synthesis",
"link": "https://wiki.engr.illinois.edu/x/V5_UCw",
"name": "ECE 402",
"pagetitle": "ECE 402 - Electronic Music Synthesis",
"prereqs": [
[
"MUS 103",
"ECE 290",
"ECE 310"
]
],
"subfield": "Biomedical Imaging, Bioengineering, and Acoustics",
"title": "Electronic Music Synthesis",
"type": "ECE tech elective / lab"
},
{
"coreqs": [
[]
],
"internallink": "ECE 403 - Audio Engineering",
"name": "ECE 403",
"prereqs": [
[
"ECE 290",
"ECE 310",
"ECE 473"
]
],
"subfield": "Biomedical Imaging, Bioengineering, and Acoustics",
"title": "Audio Engineering",
"type": "ECE tech elective"
},
{
"coreqs": [
[]
],
"crosslist": [
"CS 483"
],
"internallink": "ECE 408 (CS 483) - Applied Parallel Programming",
"name": "ECE 408",
"prereqs": [
[
"ECE 190"
]
],
"subfield": "Computer Science: Parallel Programming",
"title": "Applied Parallel Programming",
"type": "ECE tech elective"
},
{
"cetype": "required",
"coreqs": [
[]
],
"eetype": "ECE tech elective / lab",
"internallink": "ECE 411 - Computer Organization and Design",
"link": "https://wiki.engr.illinois.edu/x/Yp_UCw",
"name": "ECE 411",
"pagetitle": "ECE 411 - Computer Organization and Design",
"prereqs": [
[
"ECE 391"
]
],
"subfield": "Computer Engineering: Architecture / Digital Logic",
"title": "Computer Organization and Design"
},
{
"coreqs": [
[]
],
"internallink": "ECE 412 - Microcomputer Laboratory",
"link": "https://wiki.engr.illinois.edu/x/ZZ_UCw",
"name": "ECE 412",
"pagetitle": "ECE 412 - Microcomputer Laboratory",
"prereqs": [
[
"ECE 385",
"ECE 391"
]
],
"title": "Microcomputer Laboratory",
"type": "ECE tech elective / lab"
},
{
"coreqs": [
[]
],
"crosslist": [
"BIOE 414"
],
"internallink": "ECE 414 (BIOE 414) - Biomedical Instrumentation",
"link": "https://wiki.engr.illinois.edu/x/R4C1D",
"name": "ECE 414",
"pagetitle": "ECE 414 (BIOE 414) - Biomedical Instrumentation",
"prereqs": [
[
"ECE 210"
]
],
"subfield": "Biomedical Imaging, Bioengineering, and Acoustics",
"title": "Biomedical Instrumentation",
"type": "ECE tech elective"
},
{
"coreqs": [
[
"ECE 414"
]
],
"crosslist": [
"BIOE 415"
],
"internallink": "ECE 415 (BIOE 415) - Biomedical Instrumentation Lab",
"name": "ECE 415",
"prereqs": [
[]
],
"subfield": "Biomedical Imaging, Bioengineering, and Acoustics",
"title": "Biomedical Instrumentation Lab",
"type": "ECE tech elective / lab"
},
{
"coreqs": [
[]
],
"crosslist": [
"BIOE 416"
],
"internallink": "ECE 416 (BIOE 416) - Biosensors",
"link": "https://wiki.engr.illinois.edu/x/XxRbD",
"name": "ECE 416",
"pagetitle": "ECE 416 (BIOE 416) - Biosensors",
"prereqs": [
[
"ECE 329"
]
],
"subfield": "Biomedical Imaging, Bioengineering, and Acoustics",
"title": "Biosensors",
"type": "ECE tech elective"
},
{
"coreqs": [
[]
],
"internallink": "ECE 417 - Multimedia Signal Processing",
"name": "ECE 417",
"prereqs": [
[
"ECE 310",
"ECE 313"
]
],
"subfield": "Signal Processing",
"title": "Multimedia Signal Processing",
"type": "ECE tech elective"
},
{
"coreqs": [
[]
],
"internallink": "ECE 418 - Image & Video Processing",
"name": "ECE 418",
"prereqs": [
[
"ECE 310",
"MATH 415",
"ECE 313"
],
[
"ECE 310",
"MATH 415",
"STAT 400"
],
[
"ECE 310",
"MATH 415",
"IE 300"
],
[
"ECE 310",
"MATH 415",
"MATH 461"
]
],
"subfield": "Signal Processing",
"title": "Image & Video Processing",
"type": "ECE tech elective"
},
{
"coreqs": [
[]
],
"crosslist": [
"ECE 419"
],
"internallink": "CS 460 (ECE 419) - Security Laboratory",
"link": "https://wiki.engr.illinois.edu/x/HohDDQ",
"name": "CS 460",
"pagetitle": "CS 460 (ECE 419) - Security Laboratory",
"prereqs": [
[
"CS 461"
]
],
"subfield": "Computer Science: Security & Information Assurance",
"title": "Security Laboratory",
"type": "ECE tech elective"
},
{
"coreqs": [
[]
],
"internallink": "ECE 420 - Embedded DSP Laboratory",
"link": "https://wiki.engr.illinois.edu/x/Z5_UCw",
"name": "ECE 420",
"pagetitle": "ECE 420 - Embedded DSP Laboratory",
"prereqs": [
[
"ECE 310"
]
],
"subfield": "Signal Processing",
"title": "Embedded DSP Laboratory",
"type": "ECE tech elective / lab"
},
{
"coreqs": [
[]
],
"crosslist": [
"ECE 422"
],
"internallink": "CS 461 (ECE 422) - Computer Security I",
"link": "https://wiki.engr.illinois.edu/x/r4i9D",
"name": "CS 461",
"pagetitle": "CS 461 (ECE 422) - Computer Security I",
"prereqs": [
[
"ECE 391"
],
[
"CS 241"
]
],
"subfield": "Computer Science: Security & Information Assurance",
"title": "Computer Security I",
"type": "ECE tech elective"
},
{
"coreqs": [
[]
],
"crosslist": [
"ECE 424"
],
"internallink": "CS 463 (ECE 424) - Computer Security II",
"link": "https://wiki.engr.illinois.edu/x/sSheDQ",
"name": "CS 463",
"pagetitle": "CS 463 (ECE 424) - Computer Security II",
"prereqs": [
[
"ECE 422"
],
[
"CS 461"
]
],
"subfield": "Computer Science: Security & Information Assurance",
"title": "Computer Security II",
"type": "ECE tech elective"
},
{
"coreqs": [
[]
],
"internallink": "ECE 425 - Intro to VLSI System Design",
"link": "https://wiki.engr.illinois.edu/x/TQWfCw",
"name": "ECE 425",
"pagetitle": "ECE 425 - Intro to VLSI System Design",
"prereqs": [
[
"ECE 385",
"ECE 411"
],
[
"CS 232"
]
],
"subfield": "Computer Engineering: Architecture / Digital Logic",
"title": "Intro to VLSI System Design",
"type": "ECE tech elective"
},
{
"coreqs": [
[]
],
"crosslist": [
"ECE 428"
],
"internallink": "CS 425 (ECE 428) - Distributed Systems",
"link": "https://wiki.engr.illinois.edu/x/5UmfCw",
"name": "CS 425",
"pagetitle": "CS 425 (ECE 428) - Distributed Systems",
"prereqs": [
[
"ECE 391"
],
[
"CS 232"
]
],
"subfield": "Computer Science: Systems",
"title": "Distributed Systems",
"type": "ECE tech elective"
},
{
"coreqs": [
[]
],
"internallink": "ECE 431 - Electric Machinery",
"link": "https://wiki.engr.illinois.edu/x/PIa1D",
"name": "ECE 431",
"pagetitle": "ECE 431 - Electric Machinery",
"prereqs": [
[
"ECE 330"
]
],
"subfield": "Power and Energy Systems",
"title": "Electric Machinery",
"type": "ECE tech elective / lab"
},
{
"coreqs": [
[]
],
"internallink": "ECE 432 - Advanced Electric Machinery",
"name": "ECE 432",
"prereqs": [
[
"ECE 431"
]
],
"subfield": "Power and Energy Systems",
"title": "Advanced Electric Machinery",
"type": "ECE tech elective"
},
{
"coreqs": [
[]
],
"crosslist": [
"CS 436"
],
"internallink": "ECE 435 (CS 436) - Computer Networking Laboratory",
"name": "ECE 435",
"prereqs": [
[
"CS 438"
]
],
"subfield": "Computer Engineering: Networking",
"title": "Computer Networking Laboratory",
"type": "ECE tech elective / lab"
},
{
"coreqs": [
[]
],
"internallink": "ECE 437 - Sensors and Instrumentation",
"link": "https://wiki.engr.illinois.edu/x/KqGUCw",
"name": "ECE 437",
"pagetitle": "ECE 437 - Sensors and Instrumentation",
"prereqs": [
[
"ECE 329"
]
],
"subfield": "Electromagnetics, Optics and Remote Sensing",
"title": "Sensors and Instrumentation",
"type": "ECE tech elective / lab"
},
{
"coreqs": [
[]
],
"crosslist": [
"ECE 438"
],
"internallink": "CS 438 (ECE 438) - Communication Networks",
"link": "https://wiki.engr.illinois.edu/x/uoIMD",
"name": "CS 438",
"pagetitle": "CS 438 (ECE 438) - Communication Networks",
"prereqs": [
[
"ECE 391",
"ECE 313"
],
[
"ECE 391",
"MATH 461"
],
[
"ECE 391",
"STAT 400"
],
[
"CS 241",
"ECE 313"
],
[
"CS 241",
"MATH 461"
],
[
"CS 241",
"STAT 400"
]
],
"subfield": "Computer Engineering: Networking",
"title": "Communication Networks",
"type": "ECE tech elective / lab"
},
{
"coreqs": [
[]
],
"crosslist": [
"CS 439"
],
"internallink": "ECE 439 (CS 439) - Wireless Networks",
"name": "ECE 439",
"prereqs": [
[
"ECE 391",
"ECE 313"