由买买提看人间百态

topics

全部话题 - 话题: signals
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
r*m
发帖数: 16380
1
来自主题: Stock版 - 胡同老蛇:TWO TOP SIGNALS
SHORT-TERM: TWO RELIABLE TOP SIGNALS TRIGGERED, BULLS BETTER TAKE SOME
PROFITS
今天有两个top signals触发了,考虑到在10/15 Market Recap里提到的the first
possible pivot date around 10/21 to 10/22,因此真有可能今天就是top了。我知道
,这么说可能大部分人都不会相信,我也不敢相信,不过,根据6.5.2c Week
Seasonality Watch,下周很多半是red week,所以牛牛在这里take some profits,可
能不会有大错吧,特别是follow SPY ST Model的,因为这个model is designed to
stay in a trend as long as possible,因此是没有take partial profit的信号的,
要自己找机会,我觉得现在应该是时候了。
0.0.2 Combined Intermediate-term Trading Signals, 3 point val... 阅读全帖
g8
发帖数: 3784
2
『注意』这是8月5日CNBC的文章,一个保持20年“完美”记录的专家说: 买!
结果可想而知!
Market Indicator with Perfect Record Just Signaled 'Buy'
Published: Friday, 5 Aug 2011
An indicator followed by veteran technical analyst John Roque that has
perfect results for almost twenty years just flashed a buy signal. The
beauty of Roque's indicator, which has signaled positive returns three
months out every time from its trigger point, is in its simplicity.
http://www.cnbc.com/id/44038676/Market_Indicator_with_Perfect_R
H**********h
发帖数: 99
3
本人的方向是signal processing on network/social network. PhD.
现在的工作是machine learning.
Publications在 IEEE Journal Selected Topics in Signal Processing, IEEE
transaction Signal processing, ICASSP,
CAMSAP, PRL上
求审稿,谢谢各位大牛。。。
m***6
发帖数: 424
4
来自主题: Immigration版 - 我要征友(做signaling方向的)
哈哈 来mitbbs这么久了 基本都在这个版混 突然觉得我要征个好朋友
一直想做signaling方向 第一站老板说我你来是奉献的不是让你学的 周末都不行
现在还做我苦逼的化学 发文章挺快 但是以后还是想做抗癌signaling 期待好朋友一起
玩玩合成和signaling哈哈 异想天开吗? 呵呵
要求不多,人nice心宽就行
b******s
发帖数: 5329
5
来自主题: EmergingNetworking版 - Voice里面的signaling。
一般情况下,即便RTP session已经建立,Signal仍然需要,维持状态,否则call
controller(like CCM)会teardown连接,当然也有例外在某些特别需求情况下,H323确实需要在signal断掉的情况下继续维持RTP session。另外,通话结束,CCM还需要通知对端关闭session。cs3常用于voice signal QOS,Cisco很少提价cs5,cisco说EF,其实都是IP precedence = 5,常用于voice的RTP traffic。
Q*******e
发帖数: 939
6
来自主题: EmergingNetworking版 - Voice里面的signaling。
"同事说signal一断通话马上结束了"
impossible, check RFC 3261 if what I remember is correct;
Signaling is signaling, nothing with data.
Internet/Ethernet is not synced network like SONET/ATM
so NTP does not matter as long as PHY could do clock recovery.

manage
i*****f
发帖数: 578
7
来自主题: Linux版 - 关于signal handler
最近在看gnu libc的manual,里面讲到signal handler的时候有这个例子(chapter 24
.4.2, http://www.gnu.org/software/libc/manual/html_node/Termination-in-Handler.html#Termination-in-Handler):
1 volatile sig_atomic_t fatal_error_in_progress = 0;
2
3 void
4 fatal_error_signal (int sig)
5 {
6 /* Since this handler is established for more than one kind of signal,
7 it might still get invoked recursively by delivery of some other
kind
8 of signal. Use a static variable to keep track of that. */
9 if (fatal_err
w*s
发帖数: 7227
8
【 以下文字转载自 Programming 讨论区 】
发信人: wds (大盘5000不是梦), 信区: Programming
标 题: 关于在c++ member function里用signal( )
发信站: BBS 未名空间站 (Wed Aug 19 19:10:27 2015, 美东)
linux里这个例子
void my_handler (int param)
{
signaled = 1;
my_handler2(...);
}
int main ()
{
signal (SIGINT, my_handler);
}
如果my_handler, my_handler2是c++ member function,那么怎么整?
我老用了巨复杂的办法,奶奶的。。。
i*****f
发帖数: 578
9
来自主题: Programming版 - 关于signal handler
【 以下文字转载自 Linux 讨论区 】
发信人: icewolf (好好活), 信区: Linux
标 题: 关于signal handler
发信站: BBS 未名空间站 (Mon Dec 21 18:22:17 2009, 美东)
最近在看gnu libc的manual,里面讲到signal handler的时候有这个例子(chapter 24
.4.2, http://www.gnu.org/software/libc/manual/html_node/Termination-in-Handler.html#Termination-in-Handler):
1 volatile sig_atomic_t fatal_error_in_progress = 0;
2
3 void
4 fatal_error_signal (int sig)
5 {
6 /* Since this handler is established for more than one kind of signal,
7 it might still get invoked recurs
p****o
发帖数: 96
10
来自主题: Programming版 - 关于在c++ member function里用signal( )
谢大牛,帮我看看这样下面的可以吗?
class A {
public:
void my_handler(int param);
void my_handler2(int param);
};
//member function implementations ...
//In C file:
#include
typedef void (*handler_t)(int);
int main ()
{
A a;
handler_t h1, h2;
h1 = &a.my_handler;
h2 = &a.my_hander2;
signal(SIGINT, h1);
signal(SIGINT, h2);
}
f******r
发帖数: 45
11
【 以下文字转载自 Linux 讨论区,原文如下 】
发信人: floatair (), 信区: Linux
标 题: 请教:UNIX下process之间的signal问题
发信站: The unknown SPACE (Wed Jul 24 22:04:25 2002) WWW-POST
A parent process forks into many child processes. If one of the child
processes sends a non-termination signal (e.g. an ALRM) to parent process, how
can the parent process catch the pid of the child process?
(I know we can use wait() to get the pid of a termination (INI) signal )
m*****e
发帖数: 4193
12
来自主题: Unix版 - question about UNIX Signal

This is how signal works on some Unix platform. You need to catch the signal
again in your signal handler.
s**e
发帖数: 1523
13
老板让我找一个比较universal的secretory signal sequence用来表达一个蛋白(其实是
truncated的,它的细胞外的部分),然后看它在ECM里面增高之后对细胞的影响。我找
了半天都是细
菌、酵母、insect cell之类的表达比较多,直接用人类细胞表达的很少,有具体
signal
sequence的就根本没找到了。我是刚换了工作,所以对这个领域不是很熟悉,查了
pubmed上的文献,
都是蛋白自带的signal sequence,没有人工进行表达的。请大家给我指点指点,或者
给推荐个文章
看看吧!谢谢了!
s**u
发帖数: 9035
14
Postdoc opening- IL-4/IL-13 signaling in asthma and allergic inflammation @
Johns Hopkins School of Medicine
Job Description:
A Post-doctoral Research Fellow will work and train in a basic science
laboratory focused on the role of IL-4/IL-13 signaling in asthma and
allergic inflammation with Dr. Nicola M. Heller in Anesthesiology &
Critical Care Medicine/Allergy & Clinical Immunology. Molecular and
cellular biology, biochemistry, mouse models, cultured cell lines and
human patient samples are ut... 阅读全帖
s**u
发帖数: 9035
15
Postdoc opening- IL-4/IL-13 signaling in asthma and allergic inflammation @
Johns Hopkins School of Medicine
Job Description:
A Post-doctoral Research Fellow will work and train in a basic science
laboratory focused on the role of IL-4/IL-13 signaling in asthma and
allergic inflammation with Dr. Nicola M. Heller in Anesthesiology &
Critical Care Medicine/Allergy & Clinical Immunology. Molecular and
cellular biology, biochemistry, mouse models, cultured cell lines and
human patient samples are ut... 阅读全帖
k******n
发帖数: 13
16
来自主题: Computation版 - help! Fit envelope for a signal spectrum
Have a pulse signal spectrum. The outline is like
(sin(pi*w*sin(theta)/lambda)/(pi*w*sin(theta)/lamda))^2. But under the
outline, there are a few pulse signal.
But don't know how to fit the envelope for it. Think the envelope function is
(sin(pi*w*sin(theta)/lambda)/(pi*w*sin(theta)/lamda))^2. But what the
mathematic relationship between the signal and the envelope? I can find the
mathtools like mathcad, matlab and mathematica. So if there is any code of
them, it will be more helpful.
Thanks.
w*******i
发帖数: 987
17
【 以下文字转载自 Statistics 讨论区 】
发信人: waiwaiwai (whywhy), 信区: Statistics
标 题: 请教:如何把两个signals转化成一个同时最大程度保持信息 (转载)
发信站: BBS 未名空间站 (Fri Oct 19 22:44:01 2007), 站内
发信人: waiwaiwai (whywhy), 信区: Mathematics
标 题: 请教:如何把两个signals转化成一个同时最大程度保持信息
发信站: BBS 未名空间站 (Fri Oct 19 22:43:45 2007), 站内
发信人: waiwaiwai (whywhy), 信区: Economics
标 题: 请教:如何把两个signals转化成一个同时最大程度保持信息
发信站: BBS 未名空间站 (Fri Oct 19 22:41:12 2007), 转信
这个问题是和sufficient statistic和Bayesian updating有些关系的。
我发现对SS,统计学上常用的定义和经济学家习惯用的很不一样,具体到normal
random v
c*********t
发帖数: 239
18
University of Tulsa石油工程招Mixed Signal IC Design博后
要求基本上就是有几年mixed signal IC design经验,较好的英语水平
过来之后主要是做一个miniature subsurface measurement device的mixed signal IC
design. 符合要求的话最好能在8月份左右就开始工作.
有意者请将简历发至y***********[email protected]或者直接站内发信联系。
ET
发帖数: 10701
19
来自主题: EE版 - 求推荐mixed signal参考书
从 device直接跳到mixed-signal恐怕还没那么容易,除非就是想说这些mixed-signal
应用领域的概念,行为描述什么的。
有2们课我可以推荐下,一个是ee142 ucb ,这是rfic的。另外一个是ee241, 这个是
interface circuit . 你提高的front-end, synthesizer更在ee142里。
讨论active filter, adc/dac这些mixed-signal的话,ee241更全面。
但是,真要理解的话,并做点东西的话,analog ic design的知识,再加一些device的
知识(这个你不是问题)还是很需要的。
x****g
发帖数: 2000
20
For more information, please contact in mitbbs or email xikang.mitbbs@gmail.
com.
(You do not need to send your CV at first contact. )
I will forward your resume to my manager directly.
Job Title: Mixed Signal IC Design Engineer
State/ Province/ Region: North Carolina
Description of the Position.
(Please note this position requires industry experiences(3-5 year).)
The successful candidate will be involved in the design, simulation, layout
supervision, characterization, and introduction of mixed ... 阅读全帖
m*****t
发帖数: 3477
21
【 以下文字转载自 Working 讨论区 】
发信人: Lirio (lirio), 信区: Working
标 题: Mixed Signal Design Engineer Opening in SINGAPORE
发信站: BBS 未名空间站 (Fri Dec 24 00:30:53 2010, 美东)
请站内回复或发信到站内邮箱留下联系方式
You don't have to send me your resume now; I will give you my company email
address for resume purpose. You resume will forwarded to my manager directly
if there is a possible match.
美国公司,新加坡分公司
SERDES Mixed Signal Design Engineer
Description
Each designer is responsible for the functionality and quality of
their designs... 阅读全帖
l****e
发帖数: 7
22
小弟人在德国, 今年刚刚硕士毕业, 现在手头有两个PHD的offer, 一个是外校的RFIC设
计, 一个是本校的偏应用的mixed signal IC设计, 现在很是纠结, 求版上各位大神给
指条明路.
小弟个人背景: 授课型硕士, 杂七杂八学了一堆, 但都是一知半解. 硕士论文做的是
sigmal delta data converter. 所以算是知道一点点mixed signal IC设计的东西.
RFIC方面的东西只上了一门课, 没有丝毫hands-on经验, 可以算是小白一只. 个人对电
路设计很有兴趣, 以后有志于此.
两个offer的大概情况如下:
RFIC:
1. 题目是高速光通信电路IC设计, 用SiGe工艺. 内容大概包括电磁场仿真建模和电路
设计(PLL, LNA, VCO).
2. 导师做CDR出身, 在工业界混了15年, 经验丰富, 有自己以及带队灌JSSC, ISSCC,
MTT经验.
3. 项目经费充足, 导师对整个项目有清楚的研究计划.
4. 导师承诺可以亲自带小弟入门, 每周有面对面指导.
5. 从面试的感觉来看导师是极其push的类型, 组里气氛看... 阅读全帖
x*p
发帖数: 78
23
【 以下文字转载自 JobHunting 讨论区 】
发信人: xop (xop), 信区: JobHunting
标 题: 三菱实验室 internship position: FGPA/mixed signal processing position
发信站: BBS 未名空间站 (Mon Apr 4 17:12:52 2016, 美东)
Mitsubishi Electric Research Laboratories (Cambridge, MA) is looking for a
highly motivated, qualified individual to join our 3 month internship
program of research.
The ideal candidate should be a senior Ph.D. student with good experience in
developing signal processing algorithm for mixed signal, RF, and FPGA
implementati... 阅读全帖
w*******i
发帖数: 987
24
【 以下文字转载自 Economics 讨论区 】
发信人: waiwaiwai (whywhy), 信区: Economics
标 题: 请教:如何把两个signals转化成一个同时最大程度保持信息
发信站: BBS 未名空间站 (Fri Oct 19 22:41:12 2007), 转信
这个问题是和sufficient statistic和Bayesian updating有些关系的。
我发现对SS,统计学上常用的定义和经济学家习惯用的很不一样,具体到normal
random variable, 经济学家说C是A和B关于V的SS,一般意义就是
E[V|A,B,C]=E[V|C] 和Var[V|A,B,C]=Var[V|C]。而这个和统计学上用的定义有差别。
一般情况下,如果A,B是 iid conditional on V, 那么C=(A+B)/2是一个SS,但
按上面的要求A+B也是一个SS,但他本身方差大于A和B了,不如C,所以我觉得
经济学用的定义很成问题。
现在把A和B看作关于V的signal,那么C=(A+B)/2可以理解成把两个signals压缩成一个
有SS性质
w*******y
发帖数: 60932
25
So got a text from T-mobile saying they are issuing free signal boosters to
customers:
Here is the Key:
1. You must be on a 69 or higher family or 60 or higher individual. Others
YMMV even more.
2. This will renew your contract 24 months from today, but will not affect
upgrade eligibility.
3. You must return the equipment when you cancel service.
How to get it:
Call 611
On the IVR prompt say magic word 'cancel' or go to general customer service
and ask for loyalty.
Magic Questions: Do you have a... 阅读全帖
l****z
发帖数: 29846
26
Appeals Court Oral Arguments Signal Trouble for Obamacare HHS Mandate
A top federal appeals court signaled Friday that it might act on Obamacare’
s HHS Mandate—requiring employers to cover birth control and abortion-
related services.
After repeated assurances that the Affordable Care Act (ACA) would not
mandate abortion or people of faith violating their religious beliefs, the
Obama administration issued a mandate requiring both, when Secretary
Kathleen Sebelius issued a rule from the U.S. Dep... 阅读全帖
F***h
发帖数: 30
27
【 以下文字转载自 NewJersey 讨论区 】
发信人: Farah (Farah), 信区: NewJersey
标 题: [求助] 一张交通罚单 39:4 66.2 Avoiding traffic Signal
发信站: BBS 未名空间站 (Mon Sep 15 18:46:34 2014, 美东)
吃了一张ticket, 请教大家这是什么情况:
晚上, 前面有左拐红灯 就从旁边的shopping plaza里面穿过去了 结果被警察逮到 给
了张ticket
到家一看 还不能付钱认罚 非要去court
最后给的理由: 39:4 66.2 Avoiding traffic Signal by way of operating a
vehicle on public or private property
非要上法庭 这是个什么情况? 需要去请律师么? 看到最严重的情况 会判15天监狱
谢谢!
w********e
发帖数: 110
28
A postdoctoral position is available immediately in the Signal Transduction
Laboratory, Department of Gynecology and Obstetrics at St. Joseph’s
Hospital and Medical Center located in Phoenix, Arizona. Our laboratory is
focused on the study of signal transduction pathways and implications in
endocrine-related cancers, diabetes, and obesity, using cell culture system,
animal models as well as specimens from human subjects. Our long-term goal
is to discover potential therapeutic biomarkers and ne
m****s
发帖数: 18160
29
【 以下文字转载自 Overseas 讨论区 】
发信人: dudubaby (dudubaby), 信区: Overseas
标 题: Ph.D. applicants in Communications/Signal Processing
发信站: BBS 未名空间站 (Wed Mar 26 05:33:23 2014, 美东)
One RA/TA position available for Ph.D. applicants in the area of
Communications/Signal Processing. Interested students with strong
background are encouraged to apply. please send resume to Prof.
Rong-Rong Chen at r***[email protected].
d********3
发帖数: 899
30
This individual will be a key member of the design team. The candidate will
participate in the product definition process with marketing and customers
and be involved in all aspects of the IC design cycle from the architectural
concept phase through back-end release to production. He/she will also have
the opportunity to routinely interface with the MEMS designers to
contribute at a system level (MEMS + ASIC). The candidate should be self-
motivated and an excellent team player with superior co... 阅读全帖
r****9
发帖数: 4961
31
来自主题: JobHunting版 - Houston signal processing algorithm job
Houston TX
Oilfield service company. My boss is looking to hiring someone with strong
signal processing capability. Experience with image, inversion, well log,
EM wave signal precessing is preferred. Send your CV and contact to
l*****[email protected]
L***o
发帖数: 77
32
请站内回复或发信到站内邮箱留下联系方式
You don't have to send me your resume now; I will give you my company email
address for resume purpose. You resume will forwarded to my manager directly
if there is a possible match.
美国公司,新加坡分公司
SERDES Mixed Signal Design Engineer
Description
Each designer is responsible for the functionality and quality of
their designs and insuring that they work correctly in the overall
system.
The candidate should have expertise in some (or preferably all) of the
following areas:
* ... 阅读全帖
w*****w
发帖数: 104
33
【 以下文字转载自 EE 讨论区 】
发信人: wwwwwww (seven w), 信区: EE
标 题: 寻找正在工作的analog/mixed signal engineer(PMIC, DCDC)
发信站: BBS 未名空间站 (Wed Jan 12 18:20:03 2011, 美东)
版上的那些朋友是正在工作的,做analog/mixed signal, 具体一点就是PMIC,DCDC。
做任何大系统和小电路的。请给我发站内信。我正在找intern,希望得到你的帮助。
万分感谢
d**r
发帖数: 899
34
来自主题: JobHunting版 - Opening: Senior Analog/Mixed-Signal designer
工作地点:南加橙县Newport Beach
有意者请寄简历至:T******[email protected]
Senior Analog/Mixed-Signal designer
As a senior analog/mixed signal designer you will design state of the art de
vices for the serial comunication markets (SATA/SAS, PCI Express, Infiniband
, SONET/SDH, FTTx). You will participate in all the phases of product implem
entation from concept to validation.You must have demonstrated success in br
inging analog products to market and developing technologies in a fast paced
environment. Responsibil... 阅读全帖
O**C
发帖数: 19
35
【 以下文字转载自 EE 讨论区 】
发信人: OIFC (jam), 信区: EE
标 题: Signal Integrity Engineer Opening with Intel
发信站: BBS 未名空间站 (Fri Jun 27 02:05:49 2014, 美东)
组里有个opening,招RCG,有兴趣的同学联系我!
http://jobs.intel.com/job/Hillsboro-Signal-Integrity-Engineer-J
d********3
发帖数: 899
36
This individual will be a key member of the design team. The candidate will
participate in the product definition process with marketing and customers
and be involved in all aspects of the IC design cycle from the architectural
concept phase through back-end release to production. He/she will also have
the opportunity to routinely interface with the MEMS designers to
contribute at a system level (MEMS + ASIC). The candidate should be self-
motivated and an excellent team player with superior co... 阅读全帖
x*p
发帖数: 78
37
Mitsubishi Electric Research Laboratories (Cambridge, MA) is looking for a
highly motivated, qualified individual to join our 3 month internship
program of research.
The ideal candidate should be a senior Ph.D. student with good experience in
developing signal processing algorithm for mixed signal, RF, and FPGA
implementation experience is a must. Knowledge of wireless communication and
hardware, Physical layer is desired.
Please visit www.merl.com/people/rma
for more information.
Please send yo... 阅读全帖
L********r
发帖数: 758
38
If you are interested, please text me your email address. Thanks
The job focuses on the development of image and signal processing
algorithms. The position requires solid fundamental knowledge in the related
fields of algorithm development, including image segmentation, statistical
data analysis, signal processing, filter theory texture analysis,
classification, feature extraction.
Software skills required include C++, OOD/OOP, MATLAB and/or Python.
Minimum Qualifications
Bachelor with at l... 阅读全帖
L***n
发帖数: 25
39
Location: Major medical device company in NYC
The Mixed Signal Electrical Design Engineer designs analog and digital
circuitry for new medical imaging products as well as improves circuitry in
existing products. Tasks include analyzing, designing, prototyping, and
testing analog, digital and support circuitry used in medical imaging
products. Responsibilities include documenting designs, working with other
engineering disciplines, and transitioning prototype designs to
manufacturing. Major resp... 阅读全帖
s******e
发帖数: 52
40
来自主题: JobHunting版 - Digital/Mixed Signal Design Engineer 加州
有意者请给我发消息
Digital/Mixed Signal Design Engineer
Seeking a highly motivated and innovative digital/mixed signal design
engineer with strong theoretical and practical background in digital
circuits and FPGA design. Candidate with be part of a team responsible for
development of next generation AC/DC power management product and emulation
systems.
PRIMARY RESPONSIBILITIES
• Design and RTL coding of power management controller on FPGAs
from concept to production.
• Defining detailed... 阅读全帖
n**a
发帖数: 41
41
Company: Mitsubishi Electric Research Labs
Location: 201 Broadway, Cambridge, MA 02139
Start Date: September 1, 2009
Duration: 4 months
Project title: Low complexity space-time adaptive signal processing
Project Description: Space-time adaptive processing (STAP) refers to
processing signals received on multiple elements of an antenna array and
from multiple transmitted pulses separated by a repetition interval. STAP
improves low velocity target detection by offering robust and strong clutter
re
w********e
发帖数: 110
42
A postdoctoral position is available immediately in the Signal Transduction
Laboratory, Department of Gynecology and Obstetrics at St. Joseph’s
Hospital and Medical Center located in Phoenix, Arizona. Our laboratory is
focused on the study of signal transduction pathways and implications in
endocrine-related cancers, diabetes, and obesity, using cell culture system,
animal models as well as specimens from human subjects. Our long-term goal
is to discover potential therapeutic biomarkers and ne
L***o
发帖数: 77
43
请站内回复或发信到站内邮箱留下联系方式
You don't have to send me your resume now; I will give you my company email
address for resume purpose. You resume will forwarded to my manager directly
if there is a possible match.
美国公司,新加坡分公司
SERDES Mixed Signal Design Engineer
Description
Each designer is responsible for the functionality and quality of
their designs and insuring that they work correctly in the overall
system.
The candidate should have expertise in some (or preferably all) of the
following areas:
* ... 阅读全帖
w*****w
发帖数: 104
44
【 以下文字转载自 EE 讨论区 】
发信人: wwwwwww (seven w), 信区: EE
标 题: 寻找正在工作的analog/mixed signal engineer(PMIC, DCDC)
发信站: BBS 未名空间站 (Wed Jan 12 18:20:03 2011, 美东)
版上的那些朋友是正在工作的,做analog/mixed signal, 具体一点就是PMIC,DCDC。
做任何大系统和小电路的。请给我发站内信。我正在找intern,希望得到你的帮助。
万分感谢
m**********t
发帖数: 385
45
来自主题: JobMarket版 - Scientist for medical signal processing
Learn more about Philips Research Asia – Shanghai, please click http://www.research.philips.com/locations/shanghai.html
PRINCIPAL ACCOUNTABILITIES
• Play an active role in the project team by contributing creative ideas aimed at developing new medical device for screening, diagnosis and treatment. Creative ideas should result in patents that protect potential future expansion of our healthcare business.
• Design and implement solutions, in collaboration with hospitals.
• Test y... 阅读全帖
m*******e
发帖数: 115
46
来自主题: JobMarket版 - signal processing 研发职位
Semiconductor company in Santa Clara, CA., or Denver area, Colorado.
Signal processing architect for base band communication channels. Permanent
position.
Required Skills:
PhD in EE + 5 years directly related work experience
Strong signal processing knowledge for communication channels, especially
base band.
PRML, Adaptive filtering, control loops, timing/frequency synchronization,
modulation coding, Reed-Solomon coding, detection/estimation, fixed point
arithmetic
Desired skills:
Excellent C++ ... 阅读全帖
m****s
发帖数: 18160
47
【 以下文字转载自 Overseas 讨论区 】
发信人: dudubaby (dudubaby), 信区: Overseas
标 题: Ph.D. applicants in Communications/Signal Processing
发信站: BBS 未名空间站 (Wed Mar 26 05:33:23 2014, 美东)
One RA/TA position available for Ph.D. applicants in the area of
Communications/Signal Processing. Interested students with strong
background are encouraged to apply. please send resume to Prof.
Rong-Rong Chen at r***[email protected].
u*****e
发帖数: 8
48
My company, Molex Inc. (MOLX), has a signal integrity engineering manager
opening in Singapore. Requirements include but not limited to:
Master degree in EE with focus on signal integrity/high frequency
electromagnetics;
3~5 year+ experiences in gbps+ high-speed system channel design/interconnect
system (Professional experiences at IBM, Intel, Huawei,Cisco, Juniper, ZTE,
Tyco, ATCS etc. are preferred).
Hands on experiences with both channel modeling and components simulations
with expertise in H... 阅读全帖
g*****u
发帖数: 14294
49
All valid pionts!
I was using the single signal as a toy problem. The question is on how a
good strategy centering around the signal should be structured.
Then, parameters can be calibrated with historical data.
D*********t
发帖数: 5748
50
来自主题: Stock版 - Can we still trust Zijing's signal?
Signal is signal, it is real....
but, looks scary...
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)