Redian新闻
>
Help! urgent !course selection for 3rd year EE undergraduate program.
avatar
Help! urgent !course selection for 3rd year EE undergraduate program.# EE - 电子工程
L*k
1
纯属个人意见。
套个大耳机作吸毒状
拼命想吸出那一点点
细节,活得很累。
avatar
S*w
2
网页设计或者平面设计均可,但要求一定要是高品质的设计
工作点洛杉矶 简历email:s*******[email protected]
avatar
m*8
3
请问有人被扣Social Security and Medicare tax吗? 要报税了,发现被扣了好几百块
Social Security and Medicare tax. 没听说过F-1 要交Social Security and
Medicare tax的(我就只是个RA,都没有什么opt,cpt啥的),问问有没有人跟我一样的情况,不知是不是学校扣错了。谢谢。
avatar
b*7
4
考古后发现这两个还不一样,说两个都行的也有,说结婚证不行的也有。想问一下这事
情现在有定论吗? 大家一般都办的是结婚公证吧?
avatar
r*t
6
有没有比较巧妙的 macro 可以 unroll for loop 呢? compiler #pragma unroll 失
败了,手工 unroll 发现很值得。
我写了这个,但是编译的时候错误是:
error: identifier "forloop" is undefined
#define forloop(n) if (n>0) do_something_with_n(n) ; forloop(n-1)
avatar
j*l
7
终于定下时间,可以逼着自己学习了,sigh,从5月份毕业到现在一直在看REG,还只看
完了一遍而已,题也只做了一遍,太堕落了!!! mark一下,从此好好学习,争取一
次搞定REG~~~
avatar
t*3
8
过几天就要考试了,我没仔细看教材,不知道内容相对去年变了多少,用2010年的
scheweser准备今年的考试有问题吗?希望版上的达人赐教
avatar
a*y
9
Hi everyone, my son is on his second year of EE program. He has to select
courses
for his 3rd and 4th years from the following 6 areas withing 2 weeks. I
appreciate
expert could recommend which areas are better in term of job market:
AREA 1 – PHOTONICS & SEMICONDUCTOR PHYSICS
AREA 2 – ELECTROMAGNETICS & ENERGY SYSTEMS
AREA 3 – ANALOG & DIGITAL ELECTRONICS
AREA 4 – CONTROL, COMMUNCATIONS & SIGNAL PROCESSING
AREA 5 – COMPUTER HARDWARE & COMPUTER NETWORKS
AREA 6 – SOFTWARE
SCIENCE/MATH ELECTIVES
Th
avatar
z*n
10
哈哈,我同意这个说法。

【在 L*****k 的大作中提到】
: 纯属个人意见。
: 套个大耳机作吸毒状
: 拼命想吸出那一点点
: 细节,活得很累。

avatar
t*t
12
you can't do recursive expansion with C macro. CPP specifically forbid this,
even if you use several nested macro.
you can achieve nesting through including the file itself. boost provides
some "functions". you may want to read
http://www.boost.org/doc/libs/1_43_0/libs/preprocessor/doc/index.html
but this is dangerous for inexperienced programmers. for example, even if
macro can recursively expand, your forloop(5) will expand to something like:
if (5>0) f(5); if (5-1>0) f(5-1); if (5-1-1>0) f(5-

【在 r****t 的大作中提到】
: 有没有比较巧妙的 macro 可以 unroll for loop 呢? compiler #pragma unroll 失
: 败了,手工 unroll 发现很值得。
: 我写了这个,但是编译的时候错误是:
: error: identifier "forloop" is undefined
: #define forloop(n) if (n>0) do_something_with_n(n) ; forloop(n-1)

avatar
o*n
13
我也是8/15的REG,不过8/7号的AUD考先~一起加油罗~
avatar
C*n
14
最大的变化是Accounting加了两章,inventory & long-lived assets (financing
lease vs. operating lease, etc.).跟一级相应的内容差不多。
PE valuation那章删掉了LBO valuation。
看不出别的了。有包子吗?:)
avatar
X*r
15
you son...

【在 a******y 的大作中提到】
: Hi everyone, my son is on his second year of EE program. He has to select
: courses
: for his 3rd and 4th years from the following 6 areas withing 2 weeks. I
: appreciate
: expert could recommend which areas are better in term of job market:
: AREA 1 – PHOTONICS & SEMICONDUCTOR PHYSICS
: AREA 2 – ELECTROMAGNETICS & ENERGY SYSTEMS
: AREA 3 – ANALOG & DIGITAL ELECTRONICS
: AREA 4 – CONTROL, COMMUNCATIONS & SIGNAL PROCESSING
: AREA 5 – COMPUTER HARDWARE & COMPUTER NETWORKS

avatar
p*e
16
学生没条件吸箱子

纯属个人意见。
套个大耳机作吸毒状
拼命想吸出那一点点
细节,活得很累。

【在 L*****k 的大作中提到】
: 纯属个人意见。
: 套个大耳机作吸毒状
: 拼命想吸出那一点点
: 细节,活得很累。

avatar
d*p
17
You can do that with boost's BOOST_PP_REPEAT in boost preprocessor lib.
sth like
#define RUN_FUNC_IN_LOOP(unused, loopCount, funcToRun) funcToRun(n);
where funcToRun looks like void funcToRun(int n)
So the loop is BOOST_PP_REPEAT(1000, RUN_FUNC_IN_LOOP, yourFunc)
But it is a bad idea since the code is unreadable to most people.And if the
n is large ...

【在 r****t 的大作中提到】
: 有没有比较巧妙的 macro 可以 unroll for loop 呢? compiler #pragma unroll 失
: 败了,手工 unroll 发现很值得。
: 我写了这个,但是编译的时候错误是:
: error: identifier "forloop" is undefined
: #define forloop(n) if (n>0) do_something_with_n(n) ; forloop(n-1)

avatar
H*s
18
Good luck!
考完后,别忘了过来谈谈经验哦
avatar
t*3
19
谢谢 请问怎么发包子?

【在 C********n 的大作中提到】
: 最大的变化是Accounting加了两章,inventory & long-lived assets (financing
: lease vs. operating lease, etc.).跟一级相应的内容差不多。
: PE valuation那章删掉了LBO valuation。
: 看不出别的了。有包子吗?:)

avatar
F*D
20
我推荐1和2,
不推荐4,5.

【在 a******y 的大作中提到】
: Hi everyone, my son is on his second year of EE program. He has to select
: courses
: for his 3rd and 4th years from the following 6 areas withing 2 weeks. I
: appreciate
: expert could recommend which areas are better in term of job market:
: AREA 1 – PHOTONICS & SEMICONDUCTOR PHYSICS
: AREA 2 – ELECTROMAGNETICS & ENERGY SYSTEMS
: AREA 3 – ANALOG & DIGITAL ELECTRONICS
: AREA 4 – CONTROL, COMMUNCATIONS & SIGNAL PROCESSING
: AREA 5 – COMPUTER HARDWARE & COMPUTER NETWORKS

avatar
a*y
21
有房子就可以烧。

【在 p********e 的大作中提到】
: 学生没条件吸箱子
:
: 纯属个人意见。
: 套个大耳机作吸毒状
: 拼命想吸出那一点点
: 细节,活得很累。

avatar
r*t
22
啊。。cpp 原来不让 recusion 的?cpp 不够灵活,template class 有内存上的问题
,写起
来不容易, compiler (nvcc) 还不一定支持。搜 "preprocessor loop" 很多都指向
boost 这个 preprossesor, 不过这部分程序没法用 boost, 看来还是用个 template
engine 来生成代码好了。

this,
provides
if
like:
and
variables.

【在 t****t 的大作中提到】
: you can't do recursive expansion with C macro. CPP specifically forbid this,
: even if you use several nested macro.
: you can achieve nesting through including the file itself. boost provides
: some "functions". you may want to read
: http://www.boost.org/doc/libs/1_43_0/libs/preprocessor/doc/index.html
: but this is dangerous for inexperienced programmers. for example, even if
: macro can recursively expand, your forloop(5) will expand to something like:
: if (5>0) f(5); if (5-1>0) f(5-1); if (5-1-1>0) f(5-

avatar
t*3
23
转了你20,不知道算几个包子,谢谢

【在 C********n 的大作中提到】
: 最大的变化是Accounting加了两章,inventory & long-lived assets (financing
: lease vs. operating lease, etc.).跟一级相应的内容差不多。
: PE valuation那章删掉了LBO valuation。
: 看不出别的了。有包子吗?:)

avatar
F*D
24
也不推荐6

【在 F**D 的大作中提到】
: 我推荐1和2,
: 不推荐4,5.

avatar
L*k
25
写字台 + 台式音箱

【在 p********e 的大作中提到】
: 学生没条件吸箱子
:
: 纯属个人意见。
: 套个大耳机作吸毒状
: 拼命想吸出那一点点
: 细节,活得很累。

avatar
t*t
26
why it can not use boost? it's just a CPP library, should work on whatever
compiler.

【在 r****t 的大作中提到】
: 啊。。cpp 原来不让 recusion 的?cpp 不够灵活,template class 有内存上的问题
: ,写起
: 来不容易, compiler (nvcc) 还不一定支持。搜 "preprocessor loop" 很多都指向
: boost 这个 preprossesor, 不过这部分程序没法用 boost, 看来还是用个 template
: engine 来生成代码好了。
:
: this,
: provides
: if
: like:

avatar
a*y
27
Thanks. Why recommend 1 and 2 rather than 4 and 5? Could you please explain
a little bit more in detail? Thank you.
avatar
s*s
28
推荐个吧,我也觉得音箱爽。

【在 L*****k 的大作中提到】
: 写字台 + 台式音箱
avatar
r*t
29
This is nvcc for gpu from nvidia. For kernel code (the computation code)
my understanding is that even STL is not available. It support some c++
feature like overloading, templates and classes without device memory
members, however, mostly the kernel code is in c89.

whatever

【在 t****t 的大作中提到】
: why it can not use boost? it's just a CPP library, should work on whatever
: compiler.

avatar
F*D
30
因为456目前不好找工作,除非你学的很精通。
1,2和energy相关,是目前的热点,工作机会相对多,当然也要看身份,你儿子是abc的
话就不怕。

explain

【在 a******y 的大作中提到】
: Thanks. Why recommend 1 and 2 rather than 4 and 5? Could you please explain
: a little bit more in detail? Thank you.

avatar
L*k
31
在下的拙见
要一步到位可以看看lightness的那个先锋。
愿意折腾可以考虑psb alpha, paradigm atom, mission m3i(??)
的小箱子。这要慢慢看。boston那里deal应该比乡下要多多了。
看到了到这里问问米饭,老卡,ibd。
然后搞个super-t或我买的那个琴谱,接声卡或东芝3960之类的CD
机。
占地和投资和耳机也差不多。

【在 s**********s 的大作中提到】
: 推荐个吧,我也觉得音箱爽。
avatar
t*t
32
i said it's CPP library. you know what is CPP, don't you?
it has nothing to do with c++ or c or whatever. you can write visual basic
with it.
probably it's too twisted for you anyway. this is not designed for entry
level user.

【在 r****t 的大作中提到】
: This is nvcc for gpu from nvidia. For kernel code (the computation code)
: my understanding is that even STL is not available. It support some c++
: feature like overloading, templates and classes without device memory
: members, however, mostly the kernel code is in c89.
:
: whatever

avatar
n*o
33

abc的
呵呵

【在 F**D 的大作中提到】
: 因为456目前不好找工作,除非你学的很精通。
: 1,2和energy相关,是目前的热点,工作机会相对多,当然也要看身份,你儿子是abc的
: 话就不怕。
:
: explain

avatar
s*s
34
恩,我看X-Z9比较合适。懒的折腾。能从电脑输出给他么?

【在 L*****k 的大作中提到】
: 在下的拙见
: 要一步到位可以看看lightness的那个先锋。
: 愿意折腾可以考虑psb alpha, paradigm atom, mission m3i(??)
: 的小箱子。这要慢慢看。boston那里deal应该比乡下要多多了。
: 看到了到这里问问米饭,老卡,ibd。
: 然后搞个super-t或我买的那个琴谱,接声卡或东芝3960之类的CD
: 机。
: 占地和投资和耳机也差不多。

avatar
r*t
35
i did not get it that cpp is enough for this to work. thanks for
reminding, I'll have a look when I get a time.
Currently template engine works ok for me. It's very powerful when dealing
with C code: I can evaluate much of expressions in compile time even for
floats, while templates only do int for non-typed argument, and hence do
not build different instantiations for different non-int const arguments.

basic

【在 t****t 的大作中提到】
: i said it's CPP library. you know what is CPP, don't you?
: it has nothing to do with c++ or c or whatever. you can write visual basic
: with it.
: probably it's too twisted for you anyway. this is not designed for entry
: level user.

avatar
G*s
36
6为啥不好找工作
1,2能找些什么工作呢?

abc的

【在 F**D 的大作中提到】
: 因为456目前不好找工作,除非你学的很精通。
: 1,2和energy相关,是目前的热点,工作机会相对多,当然也要看身份,你儿子是abc的
: 话就不怕。
:
: explain

avatar
L*k
37
当然可以。
不过电脑声卡线路输出基本都带了前级,所以往往你需要
在电脑上把音量开到最大,然后用功放调音量。

【在 s**********s 的大作中提到】
: 恩,我看X-Z9比较合适。懒的折腾。能从电脑输出给他么?
avatar
t*t
38
one correction: for large part of boost, the user do *not* need to link to a
library because they are header only, although most of boost are built on
templates. same for STL.
i once read the document of nvcc, it seems they only implement a subset of
template (i guess template is quite complex for compiler writer in any case)
. so i guess still no boost or STL, unfortunately. correct me if i am wrong.

【在 r****t 的大作中提到】
: i did not get it that cpp is enough for this to work. thanks for
: reminding, I'll have a look when I get a time.
: Currently template engine works ok for me. It's very powerful when dealing
: with C code: I can evaluate much of expressions in compile time even for
: floats, while templates only do int for non-typed argument, and hence do
: not build different instantiations for different non-int const arguments.
:
: basic

avatar
y*y
39
1,2的话,看起来做CMOS device是没几年可干的了...而所谓的energy相关,现在也只
是学术界炒的热,诸如solar cell之类,市场化还是不充分,其实我石油系的同学天天
给我洗脑,说石油200年也挖不完,我们这些做solar cell device的,就是瞎忽悠...
avatar
x*u
40
室友+楼下楼上的 会把你杀了

【在 L*****k 的大作中提到】
: 写字台 + 台式音箱
avatar
j*n
41
If the current tool is not sufficient, find another tool to help. An ugly
but working solution is to add some scripts to your code.
e. g.
// a.h.in:
#include "more.h"
// my macros
`echo "#define MACRO_0(f) f(0)"; i=0; while [ $i -lt 10 ] ; do j=$((i + 1));
echo "#define MACRO_$j(f) MACRO_$i(f); f($j)" ; i=$j; done`
// Makefile:
a.h: a.h.in
cat a.h.in | (echo "cat - < a.h
would generate your macros in a.h:
#include "more.h"
// my macros
#define MACRO_0 f(0)
#d
avatar
a*y
42
Thanks. 1 and 2 have more job opportunities in North America or just Unites
states? If he goes for Area 1 and Area 2, which courses are most important?
I list the couses from 1 and 2 as following;
Fall Spring
KERNEL COURSES
ECE335H1 F - Introduction to Electronic Devices
ECE318H1 S - Fundamentals of Optics
TECHNICAL ELECTIVES
ECE442H1 F - Introduction to Micro- & Nano-Fabrication Technologies
ECE527H1 F - Passive Photonic Devices
ECE535H1 F - Advanced Electronic Devices
ECE330H1 S - Semiconducto
avatar
p*e
43
唉,我放响一点就吵到别人了。。。

在下的拙见
要一步到位可以看看lightness的那个先锋。
愿意折腾可以考虑psb alpha, paradigm atom, mission m3i(??)
的小箱子。这要慢慢看。boston那里deal应该比乡下要多多了。
看到了到这里问问米饭,老卡,ibd。
然后搞个super-t或我买的那个琴谱,接声卡或东芝3960之类的CD
机。
占地和投资和耳机也差不多。

【在 L*****k 的大作中提到】
: 在下的拙见
: 要一步到位可以看看lightness的那个先锋。
: 愿意折腾可以考虑psb alpha, paradigm atom, mission m3i(??)
: 的小箱子。这要慢慢看。boston那里deal应该比乡下要多多了。
: 看到了到这里问问米饭,老卡,ibd。
: 然后搞个super-t或我买的那个琴谱,接声卡或东芝3960之类的CD
: 机。
: 占地和投资和耳机也差不多。

avatar
l*e
44
可以用template unroll,很neat
不过,过度unroll不是好事

【在 r****t 的大作中提到】
: 有没有比较巧妙的 macro 可以 unroll for loop 呢? compiler #pragma unroll 失
: 败了,手工 unroll 发现很值得。
: 我写了这个,但是编译的时候错误是:
: error: identifier "forloop" is undefined
: #define forloop(n) if (n>0) do_something_with_n(n) ; forloop(n-1)

avatar
G*s
45
我觉得1,2是不怎么好找工作。。

Unites
?

【在 a******y 的大作中提到】
: Thanks. 1 and 2 have more job opportunities in North America or just Unites
: states? If he goes for Area 1 and Area 2, which courses are most important?
: I list the couses from 1 and 2 as following;
: Fall Spring
: KERNEL COURSES
: ECE335H1 F - Introduction to Electronic Devices
: ECE318H1 S - Fundamentals of Optics
: TECHNICAL ELECTIVES
: ECE442H1 F - Introduction to Micro- & Nano-Fabrication Technologies
: ECE527H1 F - Passive Photonic Devices

avatar
r*t
46
Only function templates are implemented. I did not test seriously if class template works, just so far so good. But since class cannot have virtual methods, there's not much juice
using classes.

a
case)
wrong.

【在 t****t 的大作中提到】
: one correction: for large part of boost, the user do *not* need to link to a
: library because they are header only, although most of boost are built on
: templates. same for STL.
: i once read the document of nvcc, it seems they only implement a subset of
: template (i guess template is quite complex for compiler writer in any case)
: . so i guess still no boost or STL, unfortunately. correct me if i am wrong.

avatar
a*y
47
Then , what jobs for 6? what's jobs for 1 and 2 ?
avatar
r*t
48
I call this a DIY template engine method... :)

);

【在 j******n 的大作中提到】
: If the current tool is not sufficient, find another tool to help. An ugly
: but working solution is to add some scripts to your code.
: e. g.
: // a.h.in:
: #include "more.h"
: // my macros
: `echo "#define MACRO_0(f) f(0)"; i=0; while [ $i -lt 10 ] ; do j=$((i + 1));
: echo "#define MACRO_$j(f) MACRO_$i(f); f($j)" ; i=$j; done`
: // Makefile:
: a.h: a.h.in

avatar
a*x
49
what's your son's preference?
avatar
a*y
50
He isn't sure. What can he do if he chose 1 and 2 ? what jobs for 3.4.5 ?
avatar
t*k
51
听FDTD扯,选个屁1和2啊,显然选3,5或者6......

【在 a******y 的大作中提到】
: He isn't sure. What can he do if he chose 1 and 2 ? what jobs for 3.4.5 ?
avatar
h*a
52
2 because of the key word "energy"(yes, i think it is going to be a bubble but it is just growing, see http://en.wikipedia.org/wiki/File:Re_investment_1995-2007.jpg for example ). and the funny thing is that conventionally 2 is called "Electromagnetics or EM field etc" but now it seems that the word "energy" is added (among many other area that is possibly related to renewable energy...), so you figure...
avatar
a*y
53
Hi leo, I didn't get it, you talk about Area 2?
avatar
h*a
54
yes, area 2, that was a typo.

【在 a******y 的大作中提到】
: Hi leo, I didn't get it, you talk about Area 2?
avatar
G*s
55
这个energy是虚的,做到还是原来的电磁场
加个energy就是用来唬人的。。

but it is just growing, see http://en.wikipedia.org/wiki/File:Re_investment_1995-2007.jpg for example ). and the funny thing is that conventionally 2 is called "Electromagneti

【在 h*******a 的大作中提到】
: 2 because of the key word "energy"(yes, i think it is going to be a bubble but it is just growing, see http://en.wikipedia.org/wiki/File:Re_investment_1995-2007.jpg for example ). and the funny thing is that conventionally 2 is called "Electromagnetics or EM field etc" but now it seems that the word "energy" is added (among many other area that is possibly related to renewable energy...), so you figure...
avatar
a*y
56
Hi leo, I do not understand this part :that conventionally 2 is called "
Electromagnetics" but now it seems that the word "energy" is added (among
many other area that is possibly related to renewable energy...), so you
figure... ", Could you explain it,pls.thank.
avatar
h*a
57
所以我说这个energy是个泡,只不过刚开始胀,所以谁先进去谁赚(在泡碎前撤)。

【在 G*****s 的大作中提到】
: 这个energy是虚的,做到还是原来的电磁场
: 加个energy就是用来唬人的。。
:
: but it is just growing, see http://en.wikipedia.org/wiki/File:Re_investment_1995-2007.jpg for example ). and the funny thing is that conventionally 2 is called "Electromagneti

avatar
h*a
58
引用楼前的 “这个energy是虚的,做到还是原来的电磁场加个energy就是用来唬人的
。。。”

【在 a******y 的大作中提到】
: Hi leo, I do not understand this part :that conventionally 2 is called "
: Electromagnetics" but now it seems that the word "energy" is added (among
: many other area that is possibly related to renewable energy...), so you
: figure... ", Could you explain it,pls.thank.

avatar
c*n
59
IMHO
job is not promising in Area 4,
job market is still ok for 5 and 6 so far

program.

【在 a******y 的大作中提到】
: Hi leo, I do not understand this part :that conventionally 2 is called "
: Electromagnetics" but now it seems that the word "energy" is added (among
: many other area that is possibly related to renewable energy...), so you
: figure... ", Could you explain it,pls.thank.

avatar
e*y
60
Looks like your son is going to U of Toronto. Stay away from areas 1,2, and
4 for sure because these fields are shrinking in general both in academia
and the industry, so he'll have a hard time landing a job fresh out of
college. Besides, the things you learn in 1 and 2 are not transferable to
other areas. Out of these areas, 3 and 6 are relatively better choices,
unless your son has his own preferences. From what I know U of T is pretty
strong in software and there are plenty of opportuniti
avatar
F*D
61
你说的也许不错,通信十年前也就是个泡?也不是一堆一堆的往里面挤。

【在 h*******a 的大作中提到】
: 所以我说这个energy是个泡,只不过刚开始胀,所以谁先进去谁赚(在泡碎前撤)。
avatar
h*a
62
是的,虽然我也不希望,但我是这样认为的。但不是说从此IT通讯半导体从此一蹶不振了,可能就是半死不活(就像以前的汽车工业)。如果以后技术政治战略等再来次革命当然这些产业(的一个或全部)也有可能再一次辉煌,不过那样仍旧很可能是成为一个泡,只不过是另外一个泡罢了。。。这样的泡事(目前看来)在美国更有可能发生,因为美国(现在与可预见的未来)既有技术的优势,又有会忽悠的人(与历史文化等赋予的软资本),我觉得这两个是做泡泡的必要条件,甚至可能是充分条件。这部,energy的小泡不正在被吹大吗?

【在 F**D 的大作中提到】
: 你说的也许不错,通信十年前也就是个泡?也不是一堆一堆的往里面挤。
avatar
d*d
63
如果对硬件感兴趣:
3+4 或者 3+5
如果对软件感兴趣:
5+6

【在 a******y 的大作中提到】
: Hi leo, I do not understand this part :that conventionally 2 is called "
: Electromagnetics" but now it seems that the word "energy" is added (among
: many other area that is possibly related to renewable energy...), so you
: figure... ", Could you explain it,pls.thank.

avatar
s*d
64
AREA 1 – PHOTONICS & SEMICONDUCTOR PHYSICS
AREA 2 – ELECTROMAGNETICS & ENERGY SYSTEMS
AREA 3 – ANALOG & DIGITAL ELECTRONICS
AREA 4 – CONTROL, COMMUNCATIONS & SIGNAL PROCESSING
AREA 5 – COMPUTER HARDWARE & COMPUTER NETWORKS
AREA 6 – SOFTWARE SCIENCE/MATH ELECTIVES
我是做area 2的
推荐area 3/6,不推荐4
avatar
a*n
65
356好一点。
不过说实在的,如果LZ儿子没兴趣,学什么都白搭,都是需要花一定功夫和时间才能吃
香,不是N年前那个随便毕业就有很多公司抢的年代了。花同样的功夫和时间,现在356
相对容易找工作一些。
我有几个朋友学2的,那是真喜欢,有兴趣,肯钻研,一样有好出路。
avatar
F*D
66
I can agree with you any more.

356

【在 a******n 的大作中提到】
: 356好一点。
: 不过说实在的,如果LZ儿子没兴趣,学什么都白搭,都是需要花一定功夫和时间才能吃
: 香,不是N年前那个随便毕业就有很多公司抢的年代了。花同样的功夫和时间,现在356
: 相对容易找工作一些。
: 我有几个朋友学2的,那是真喜欢,有兴趣,肯钻研,一样有好出路。

avatar
x*u
67
显然是 3,5,6,啊,1,2的工作做研究的
比较多,工作也比较枯燥,不是很好找。没
看见offer版上拿offer的很多都是cs的吗。
avatar
r*n
68
明明1和2是最不好找工作的,居然变成工作相对较多了?

【在 F**D 的大作中提到】
: 也不推荐6
avatar
F*D
69
呵呵,难道wireless好找工作,我看好1,2

【在 r*******n 的大作中提到】
: 明明1和2是最不好找工作的,居然变成工作相对较多了?
avatar
n*t
70
看兴趣吧
avatar
j*y
71
用公民身份的话,1不算太烂

【在 F**D 的大作中提到】
: 呵呵,难道wireless好找工作,我看好1,2
avatar
x*i
72
这个回复还是挺厚道的。
3,5都是circuits的,不一定非要搞wireless comm

【在 d*******d 的大作中提到】
: 如果对硬件感兴趣:
: 3+4 或者 3+5
: 如果对软件感兴趣:
: 5+6

avatar
DK
73
I was in the same school as your son and was in the same situation 3 years
ago, I chose area 2 & 4 but one semester later switched to 3 + 5, as I
realized (at that time at least) that area 2 & 4 has relatively less
opportunities, while 3 & 5 & 6 were going pretty strong ( comapnies liek ATI
was hiring a lot of ppl from U of T). If he like building things, 3 / 5 /6
are the fields to go, if he hates implement things but can do maths and like
theory, probably 2/4 are for him
avatar
n*2
74
我觉得3,4,5好点。学的技能实用。相关的industry规模也大些。6可能也可以,但是个
人不喜欢。
avatar
d*d
75
wireless相对成熟,工作机会不一定多。但是wireless有一套完整(优美)的体系,从
数学到电路,从idea到产品,3+4既有implementation也有theory,undergrad接触面广
点没有坏处。
SW或者纯circuit design的课,多半以project为主,练了手熟,但是没有什么理论训
练。

【在 F**D 的大作中提到】
: 呵呵,难道wireless好找工作,我看好1,2
avatar
o*t
76
No 1 and 2.
4, 5, 6 is ok. A lot of job in different industry needs those courses. 4,5
,6 are not limited in IT. You can find some job in medical equipment
company, military company, nation security org etc.

【在 a******y 的大作中提到】
: Hi leo, I do not understand this part :that conventionally 2 is called "
: Electromagnetics" but now it seems that the word "energy" is added (among
: many other area that is possibly related to renewable energy...), so you
: figure... ", Could you explain it,pls.thank.

avatar
f*r
77
do analog & digital electronics
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。