由买买提看人间百态

topics

全部话题 - 话题: eigen
首页 上页 1 2 3 4 5 6 下页 末页 (共6页)
c*******h
发帖数: 1096
1
来自主题: Computation版 - svd on large matrix
seems that the package is designed for eigen problem and does not
have convenient interface for svd.
for a retangular matrix A, i have to either solve the eigen problem
of AA' or [0 A'; A 0]. The former way requires explictly forming the
matrix AA', which destroys the sparsity. The latter way results in
much larger arnoldi vectors and probably many more iterations.
please correct me if i misunderstood the usage of this package.
D*******a
发帖数: 207
2
来自主题: EE版 - 问一个矩阵问题
You are welcome. I guess you require the vectors of X to be perpendicular to
each other, and each be normalized. If so, From my memory, and also from
intuition, X should be composed of the eigen vectors of the GSVD associated
with the largest eigen values.
But I have forgotten almost everything related to waterfilling, so no
comments on that.
Q***5
发帖数: 994
3
来自主题: Mathematics版 - PCA 分析请教 (转载)
找 eigen vector, 再乘上对应的 eigen value 平方根,就得到你要的那些 a了。
s**********t
发帖数: 680
4
The link to the paper is provided for your convenience.
The Molecular quasi-species
Eigen M ; McCaskill J; Schuster P
Advances in Chemical Physics, (1989) Vol. 75, 149-263.
http://www3.interscience.wiley.com/cgi-bin/summary/114181861/SUMMARY
New concepts for dealing with the evolution of nucleic acids.
Eigen M
Cold Spring Harbor Symposia on Quantitative Biology, Vol. LII. Evolution of
Catalytic function. Cold Spring Harbor Laboratory: Cold Spring Harbor, New
York, USA. 1987. 307-320.
http://symp
s***e
发帖数: 267
5
Here is one brute force way to calculate for N R.V. with same correlation r:
The correlation matrix must be p.s.d., which is
r*E + (1-r)*I
where E is N*N all 1 matrix and I is N*N identity matrix.
The first one has eigen values (r*N, 0, ..., 0), and the second one has
eigen values (1-r, 1-r, ..., 1-r). Since the second one is identity any set
of orthogonal vector is its eigenvector, so the eigenvalues are summable, i.
e. the eigenvalues for the original cor matrix is:
(1-r+r*N, 1-r, ..., 1-r). T... 阅读全帖
y******6
发帖数: 61
6
来自主题: Quant版 - 一个统计问题
write it in terms of x^t A x, where A = I - 1/n e * e^T , which is rank n-1.
Then eigen value decomposition.... with eigen values 1....
h*l
发帖数: 19
7
来自主题: Science版 - 一个关于膜片振动的问题
You can find a proof of this theorem in
"Fetter and Walecka"'s "theoretical mechanics
of particles and continua", of course initially
from Rayleigh.
The problem is: at there, there is no proof
of "stability" of eigen-functions of a perturbed
membrane form. i.e whether the eigen-functions
will be close to original ones when the membrane's
shape is just changed mathematically tiny. This is
of-course, a general problem in perturbation theory.
Usually it only leads a "local minimum". This may
be als
v*x
发帖数: 32
8
many other norms, say,
sum of all |entries|^2
sum of all |entries|
sum of |eigen values|^2
sum of |engen values|
max of |eigen values|
...
you can make up more.
s**********t
发帖数: 680
9
The link to the paper is provided for your convenience.
The Molecular quasi-species
Eigen M ; McCaskill J; Schuster P
Advances in Chemical Physics, (1989) Vol. 75, 149-263.
http://www3.interscience.wiley.com/cgi-bin/summary/114181861/SUMMARY
New concepts for dealing with the evolution of nucleic acids.
Eigen M
Cold Spring Harbor Symposia on Quantitative Biology, Vol. LII. Evolution of
Catalytic function. Cold Spring Harbor Laboratory: Cold Spring Harbor, New
York, USA. 1987. 307-320.
http://symp
s*****n
发帖数: 2174
10
来自主题: Statistics版 - 请教PCA
PCA本质上就是高维变量空间的一个旋转, 这里包含不同维度之间的加权问题. 根据情况
不同, 你可以选择normalize或者不normalize, 但是要一致. 你把correlation matrix
进行 eigen value decomposition, 表示你认为各个维度是等权重的(normalized), 也
就是说的计算是在一个adjusted scaled空间里面. 但是你乘的data没有经过normalize
还是在原始空间里面. 这两个不能乘在一起.
如果你是直接eigen(cov(data)), 就可以和data乘在一起了, 因为两个都是在原始变量
空间里面. 这等价于princomp(..., cor = F)
不过做PCA, 推荐用prcomp(). 这个是基于SVD的, 要比基于EVD的princomp()精度高. 而
且我觉得prcomp()的输出也要比princomp更clear.
s*r
发帖数: 2757
11
来自主题: Statistics版 - 这个矩阵推导有什么问题
不是了,test yourself
x1 <- c(1,1,0,0,0,0)
x2 <- c(0,0,1,1,0,0)
x3 <- c(0,0,0,0,1,1)
y <- c(rnorm(n=2, mean=0), rnorm(n=2,mean=2), rnorm(n=2, mean=4))
x <- cbind(rep(1, times=6), x1,x2,x3))
xxt <- x %*% t(x)
xtx <- t(x) %*% x
e.xtx <- eigen(xtx)
e.xxt <- eigen(xxt)
V <- e.xtx$'vectors'; round(V, digits=2)
U <- e.xxt$'vectors'; round(U, digits=2)
s.v <-e.xtx$'values' # single values
# all these matrix have rank = 3;
d <- sqrt(diag(s.v[c(1,2,3)]))
U3 <- U[,c(1:3)]
V3 <- V[,c(1:3)]
round(U3 %*% t(U3), ... 阅读全帖
b*****n
发帖数: 685
12
来自主题: Statistics版 - 请教:关于covariance matrix
我数学不是很好,老是靠经验,试了试:
eigen(cov(matrix(rnorm(10), nrow = 2)))
eigen(cov(matrix(rnorm(10), ncol = 2)))
您数学牛,给解释一二?
s*****9
发帖数: 108
13
来自主题: Statistics版 - [question] sample estimation of eigenvalues
客气了,我google了这个topic,也没找到理论上的公式来说明这个现象。倒是有很多
paper里包括了
相关的simulation的结果。
这个paper:“A bootstrap approach to eigenvalue correction”
的第一页最后和第二页开头提了一些paper,不知道有没有帮助。
我猜可以通过定义eigen-value作为一个优化问题的解,进而写出eigen-value的一个近
似表达式。
应该能得到consistence和rate的一些结果。
g********r
发帖数: 8017
14
我以为只有在A的每一行mean为零的时候,svd(A)才和eigen(cov(A))等价呢。svd(A)
总是和eigen(A'A)等价。
D**u
发帖数: 288
15
来自主题: Statistics版 - 沾满鲜血的yahoo面经啊
PCA,应该有两条线,呵呵,两个eigen vector,不过一般pca用来做reduction,所以这里
应该默认是value值最大的哪一条。
不同之处应该是point distance to the line (error) in linear regression is
measured orthogonal to the x axis, where in PCA the distance is measured
orthogonal to the eigen vector
呵呵,of course 一个是supervise一个是unsupervised,不过,问得是线为啥不同,
说一个是 supervise另一个是unsupervised跟没说一样
E**********e
发帖数: 1736
16
来自主题: Statistics版 - PCA拟合问题
pca用来降维, 但是pca也可以用做regression啊。 你可以plot scree。 选top N个新
变量其中eigen value(或variance) 之和比上所有eigen value 之和大于一个设定值
,比如95%。 那么这95%包含的top N个新变量就可以用来做regression。 余下的5% 的
变量其实对model 贡献就很小或者可以忽略了。如果你要是光想选features的话,
pca是不适合的。
那这样的话, 可以用 stepwise, forward, backward, univariate screeing, 还
有一些像, k-neighbor local search, annealing, genitic 算法是么的。
e*****c
发帖数: 37
17
来自主题: board版 - 申请Chinanews版版副
我愿意协助EIGEN工作
1 坚定支持Eigen, 坚决执行MITBBS站规定和CHINANEWS版规
2 鼓励各种讨论, 百花齐放, 百家争鸣
3 反对攻击文章, 维护网友利益
4 维持版面团结, 让中国新闻版充满信任和尊重.
谢谢
l**c
发帖数: 335
18
来自主题: Complain版 - 关于CN板-战务请看
你这搞笑了吧,前任grail老将照样被小将骂道这个程度,没有任何区别。就算是再前
任的eigen,尽管eigen观点还是偏向小将的,只是因为制板没有对小将bias,照样被几
个小将id骂的狗血碰头。
某些小将这种德行,只要不是军班海峡那几个当斑竹,换了谁一样要7x24撒野来闹,所
谓“制板不公”理由都是扯淡,小将自己当万年斑竹的地方治理和北朝鲜似的,还好意
思说别人压制言论自由.

淡。
m****s
发帖数: 18160
19
☆─────────────────────────────────────☆
mitbbs (未名空间) 于 (Wed Oct 10 20:00:33 2007) 提到:
各位新老朋友,
目前ChinaNews斑竹eigen因学业工作个人原因已请辞版主职位,因此版非同他版,信息
量大且事务繁琐艰巨,急需一位能人接替eigen继续版面管理工作,现Board板已有一些
对此版既有兴趣又有热情的ID在进行竞选此职位,现整理如下,各位新老ID也过来讨论
一下,力求选出一位稳重、平和、热情又有经验的合大多数人心意的版主。
编号 刊登者 日期 标题
8759 egabbac Oct 1. ● 申请CHINANEWS版主
8826 priori Oct 2. ● 申请ChinaNews版版副(或者版主)
8989 grail Oct 2 ● 申请ChinaNews版版主
另如大家有新的建议人选,或愿意毛遂自荐,也非常欢迎,也请于后跟帖。
我们非常乐意知道大家的想法!谢谢!
Mitbbs
☆──────────
w*********g
发帖数: 30882
20
中国军费首次超过1000亿美元,德国人嫉妒的评论
2012-03-08 07:15:34.0
Chinas Milit?retat erstmals über 100 Milliarden Dollar
中国军费首次超过1000亿美元
Chinas Milit?rausgaben steigen um mehr als elf Prozent – als einzige
Gro?macht rüstet das Land zweistellig auf. Ein Sprecher findet die Zahlen
trotzdem niedrig.
中国军费增幅超过11%- 大国中唯一一个军费涨超过两位数的,,一名发言人表示
这个数据仍然太低。
主要内容是:
1060亿美元
中国表示和平发展
印日等国警告军备竞赛
为了应对美国战略转移和包围
2011年首次测试进攻性武器(航妈,J-20)
南海和钓鱼岛纠纷是逐渐强硬
评论部分:
第一条中国的
Hop Sing vor 1 Tag
Wir Chinesen halten uns an den alten r?mischen Spruch... 阅读全帖
a*******a
发帖数: 451
21
请对下面这几段话,给予评价,谢谢
----
1953年,生物界发生了件大事。米勒从无机物中制造了氨基酸等重要的生命所必须的物
质,立即被吹捧是支持生命由无机物逐渐进化而来的重要科学证据。
然而米勒的实验并不象当时许多人预想的那样,拉开了随机自然创造生命的序幕。相反
,对米勒的实验的意义,人们提出愈来愈多的质疑。经推算,米勒实验中的电火花提供
的能量相当于原始地球表面四千万年所接受的能量的总和,诸如此类还有:其反应物的
浓度远远高于原始气层中这些气体的实际浓度,其产生的氨基酸分解速度比合成速度快
......怪不得连一同从事此项研究的Brooks与Shaw两人都承认:“这些实验宣称是无生
物的合成结果,实际上却恰恰是借着有高度智慧与活生生的人精心设计而成功的。”
退一万步说,即使米勒等人的实验确实在原始大气中实际自然发生过,也就是说,假定
氨基酸等能在原始大气中由无机物自然产生,这离生命的起源仍然还有遥远的距离。生
命有许多特点,如DNA的功能(基因是DNA的片断)。要产生生命,首先要产生DNA(或
RNA)。DNA本身并不复杂,是由四种不同的核甘酸(氨基酸的一种)相联而形成的长链
。复... 阅读全帖
m**c
发帖数: 7299
22
一个简单的分子,也有很多不同的构象组合,比如水分子,两的氢的相对位置可以有多
个组合(比如差一度或半度视为不同),一个糖分子的构象就比DNA的组合更多,但实
际上不是随机分布的,实际上分子结构很精确,其中的道理应该不难理解(能量,稳定
等),对于大分子的DNA,也可以用同样的道理解释。
*********************************************************************
1967年诺贝尔化学奖获得者Dr. Manfred Eigen说:“假设要组合一个仅含有221个核甘
酸的分子(其实至少要一千二百个核甘酸),其复杂程度的数学量等于这些221核甘酸
所能形成的不同排列的总和,一共是4E221,即10E133”。这巨大的随机组合之中,只
有一种组合是可以产生第一个最简单的生命。如果让这些分子随机自然组合,组合的速
率为每秒一亿次,假设宇宙的年龄为三百亿年,那么,从宇宙形成到现在,还不足以随
机自然产生一个有正确核甘酸排列组合序列的DNA分子!更不要说最简单而“有生命”
的蛋白质分子至少含有一千二百个核甘酸。所以单靠随机组合而在宇宙整个... 阅读全帖
k********k
发帖数: 5617
23
来自主题: Military版 - 惊讶于德国人的英语能力
http://news.xinhuanet.com/ziliao/2004-06/24/content_1545030.htm
http://lechinois.ca/agenda/bethune/bethune_memoire.htm
纪念白求恩
毛泽东
(一九三九年十二月二十一日)
http://lechinois.ca/agenda/bethune/bethune_memoire.htm
Mao Tse-tung
In Memory of Norman Bethune
December 21, 1939
http://lechinois.ca/agenda/bethune/bethune_memoire.htm
Mao Zedong
À la mémoire de Norman Bethune
(21 décembre 1939)
http://www.marxists.org/espanol/mao/escritos/NB39s.html
Mao Tse-tung
En Memoria de Norman Bethune
21 de diciembre de 19... 阅读全帖
w********9
发帖数: 8613
24
来自主题: Military版 - 惊讶于德国人的英语能力
这是Shorter Oxford American English Dictionary第五版列出的与德语或者日耳曼语
相关的英语词根或词汇。
-at, suffix2. + -dom, suffix. + -ed, suffix1. + -ed, suffix2. + -en, suffix1
+ -en, suffix2 + -en, suffix5 + -en, suffix6 + -er, suffix1. + -er, suffix3
. + -er, suffix5. + -est, suffix1. + -est, suffix2. + -et, suffix2. + -eth,
suffix1. + -hood, suffix. + -ing, suffix1. + -ing, suffix3. + -ish, suffix1.
+ -kin, suffix. + -le, suffix1 + -le, suffix3 + -less, suffix. + -ling,
suffix1. + -ling, suffix2 + -ly, suffix1. + -ly, s... 阅读全帖
w********9
发帖数: 8613
25
来自主题: Military版 - 惊讶于德国人的英语能力
常见一些德语词汇和google翻译出来的英文词汇。有些翻译的对应性不好。比如Film。
die the
und and
bis to
ist is
dass that
war was
er he
es it
mit with
als than
seiner its
auf onto
haben have
an to
von from
nicht not
dasssie thatthey
dieser this
hatte had
sind are
aber however
von from
oder or
sie they
ein one
Sie they
ein one
wir we
alle all
waren were
ihr their
wrde dignity
gibt are
ihre their
wird is
wenn when
die the
ihn it
waren were
hat has
weitere more
wenn when
nein no
aus from
tun do
kann can
was what
bis to
sagten, said
um ... 阅读全帖
k********k
发帖数: 5617
26
http://news.xinhuanet.com/ziliao/2004-06/24/content_1545030.htm
http://lechinois.ca/agenda/bethune/bethune_memoire.htm
纪念白求恩
毛泽东
(一九三九年十二月二十一日)
http://lechinois.ca/agenda/bethune/bethune_memoire.htm
Mao Tse-tung
In Memory of Norman Bethune
December 21, 1939
http://lechinois.ca/agenda/bethune/bethune_memoire.htm
Mao Zedong
À la mémoire de Norman Bethune
(21 décembre 1939)
http://www.marxists.org/espanol/mao/escritos/NB39s.html
Mao Tse-tung
En Memoria de Norman Bethune
21 de diciembre de 19... 阅读全帖
c**a
发帖数: 561
27
pagerank其实就是eigen val decomp
那两个创始人都是phd
他们的论文也是发表了的
[在 lulupp (木有昵称) 的大作中提到:]
:我觉得好马工还是厉害的,不说别的,就说这个 Google 搜索,又快又好,百度能望
尘莫及,靠的是巧妙地设计,算法的最高境界吧。当然了,我是外行,纯想象,如果不
是靠高级算法,请指正。

:...........
L****8
发帖数: 3938
28
来自主题: Military版 - Matlab软件就是用java做的
eigen c++
h*******i
发帖数: 4386
29
矮贼的坏,是深入基因的坏,我老现在用deep learning做genome data mining, 发现
矮贼类坏人的bio eigen vector。
哈哈。
G*******n
发帖数: 6889
30
http://der-fuehrer.org/reden/deutsch/Weisungen/1942-08-18.htm
Führerhauptquartier, den 18. 8. 42
Der Führer
OKW/WFSt/Op. Nr. 002821/42 g.K.
Geheime Kommandosache
30 Ausfertigungen
24. Ausfertigung
Weisung Nr. 46 für die Kriegführung
Richtlinien für die verstärkte Bekämpfung des Bandenunwesens im
Osten
A) Allgemeines
I.) Das Bandenunwesen im Osten hat in den letzten Monaten ei­nen nicht
mehr erträglichen Umfang angenommen und droht zu einer ernsten Gefahr f
ür die Versorgung d... 阅读全帖
M******a
发帖数: 6723
31
来自主题: Military版 - 16扬之 德国华商
原创2018-03-16扬之 德国华商 德国华商 微信号HSB-1997
功能介绍
传递德国华人社会资讯、购房、移民、旅游、保险、交通、留学信息;解读德国官方对
华人生活有重要意义的政策、法律。致力于中德友谊与经济交往。
扬之
德国华商报专栏作者
往期精彩:
【莱茵夜话】默克尔孤注一掷社民党前景堪忧大联合政府仍是未知数
......
“谁动了我的奶酪”——浅析欧美对“一带一路”的心态变化
年初以来,欧美对中国倡导的“一带一路”掀起了一波又一波的质疑声浪:首先是法国
总统马克龙在访华期间,告诫“新丝绸之路”不应成为一条“新的霸权之路,让沿线国
家成为附庸”;2月初,英国首相梅访华期间也未对中国的这个倡议敞开怀抱,而是希
望中英双方共同努力,以最佳方式开展项目,确保其符合“国际标准”。
2月中旬,德国外长加布里尔(Sigmar Gabriel)在“慕安会”上表示,中国正在利用
“一带一路”的投资来宣扬一套与西方不同的价值观体系,并提议欧盟筹集资金,按照
自己的标准来参与东欧、中亚以及非洲的基础设施建设。法国总理菲利普(É
douard Philippe)也附和着表示,欧洲“不能把... 阅读全帖

发帖数: 1
32
来自主题: Military版 - 以我教数学的经验是这样的
what is the chinese for eigen value?
c****x
发帖数: 6601
33
来自主题: Military版 - 以我教数学的经验是这样的
哈哈,群调席绢

:what is the chinese for eigen value?
:【 在 hemigge22 (芝芝) 的大作中提到: 】

发帖数: 1
34
Software Engineer –Computer Vision - (Autonomous Systems)
Salary$100k/year (Intern 50%)
Job Description
Company Introduction
 
The hiring company is a small, Pre-A stage startup in Silicon Valley. They
are developing hardware and software solutions for autonomous systems
include cars, UAVs, and robots. The company is backed by major venture
capitals and just received funds for mass production of their products.
Support H1B and Green card application.
Responsibilities
 
Contribute to th... 阅读全帖
N*****N
发帖数: 1605
35
来自主题: ebiz版 - [合集] ebiz出击的时候到了
☆─────────────────────────────────────☆
LOLLOL (太医院右院判) 于 (Wed Jun 20 00:19:30 2007) 提到:
派出众JS攻陷下列各版,当版主或版务都成,重奖。已经在的,没奖
讨论区人气排名
序号 讨论区名称 类别 中文描述 版主
1 shopping [生活] 购物天堂 blackbone
2 ChinaNews [新闻] 中国新闻 eigen
3 ebiz [生活] 电子商务 blueclassic
4 Family [生活] 我爱我家 baren
5 Money [生活] 海外理财 zengdl
6 Basketball [体育] 篮球 诚征版主中
7 Stock [生活] 股海弄潮 s
t******6
发帖数: 302
36
来自主题: ebiz版 - 电子商务--No.1
1 电子商务 blueclassic
2 购物天堂 blackbone
3 中国新闻 eigen
4 肚皮舞运动 Corinthian
5 我爱我家 baren
6 二手市场 latindancer
7 海外理财 zengdl
8 落地生根 barry
9 篮球 zhuxie
10 股海弄潮 scarface
N*****N
发帖数: 1605
37
来自主题: ebiz版 - [合集] 电子商务--No.1
☆─────────────────────────────────────☆
txw44106 (longhorn) 于 (Wed Jun 27 03:53:32 2007) 提到:
1 电子商务 blueclassic
2 购物天堂 blackbone
3 中国新闻 eigen
4 肚皮舞运动 Corinthian
5 我爱我家 baren
6 二手市场 latindancer
7 海外理财 zengdl
8 落地生根 barry
9 篮球 zhuxie
10 股海弄潮 scarface
☆─────────────────────────────────────☆
hrfrank (crazy frank) 于 (Wed Jun 27 03:54:17 2007) 提到:
re
☆─────────────────────────────────────☆
gwrfxj (大灰狼) 于 (
g******a
发帖数: 48
38
没见过如此好笑的剽窃,不但抄袭范围达100%,而且在同一学报上一字未改地一搞两投
,还被发表。是一个巴基斯坦的journal 叫做Journal of Theoretical and Applied
Information Technology http://www.jatit.org/
这里是文章全文
http://www.jatit.org/volumes/research-papers/Vol6No2/6Vol6No2.p
Title: Eigen Value Techniques for Small Signal Stability Analysis in Power
System Stability
Author: G Naveen Kumar, Dr. M. Surya Kalavathi, B. Ravindhranath Reddy.
整篇文章是拼凑自两篇文章,抄袭范围达100%。
头7页是原封不动的抄袭以下文章
1.Jian Ma, Zhao Yang Dong, Pei Zhang, “Comparison of BR and QR Eigenvalue
Al... 阅读全帖
x****6
发帖数: 4339
39
我承认搞纯生物因为没有物理的结构性思维训练,对什么是基本问题都搞不清楚。这是
生物的主流。
生物里一直有两个平行的传统:naturalist和physicist传统。前面一种是主流的,从
亚里士多德算起;后面一种可以追溯到薛定谔。后来的物理炸药奖得住Manfred Eigen
研究生命起源等,一直有物理学家研究基本的生物问题,但是一直都是屈指可数。但是
最近10年,系统生物学的诞生加上一系列的技术上的进展,越来越的物理学家来研究生
物问题,一系列“基本问题”都开始被研究。比如Stan leibler对基因网络robustness
的研究,william bialek对基因表达的信息论研究。 而且生物里的分支 进化生物学,
一直以来都是基于数学推导的,研究的也是基本的种群的的动态过程。
以上这些工作完全不同于大家经常所说的“刷试管、杀老鼠”,和你们做的物理工作更
加接近。当然,精确性要差一些。
生物里,定量的成分越来越多,问基本问题的人也越来越多。这是趋势。
所以简单的说 生物学家对基本问题不感兴趣 现在已经不合适了。
g**********t
发帖数: 475
40
来自主题: JobHunting版 - 现在搞CUDA的好不好找工作
我最近刚开始学CUDA,感觉这个技术平台还不很成熟,最大的问题是很多以前的
library都不能用。比如说一个在kernel里进行简单的eigen-decomposition,都不能通
过在kernel里调用libray的方式解决(cula的函数貌似只能从host code里面调用),还
得自己实现。另外貌似kernel也不能做member function。总之编写起来难度比较大。
R*********n
发帖数: 99
41
来自主题: JobHunting版 - 某医疗行业外企招聘 researcher-上海
有意者,请发简历到:[email protected]
(function(){try{var s,a,i,j,r,c,l,b=document.getElementsByTagName("script");l=b[b.length-1].previousSibling;a=l.getAttribute('data-cfemail');if(a){s='';r=parseInt(a.substr(0,2),16);for(j=2;a.length-j;j+=2){c=parseInt(a.substr(j,2),16)^r;s+=String.fromCharCode(c);}s=document.createTextNode(s);l.parentNode.replaceChild(s,l);}}catch(e){}})();
/* ]]> */
职位名称Job Title: Researcher
... 阅读全帖
R*********n
发帖数: 99
42
来自主题: JobHunting版 - 某医疗行业外企招聘 researcher-上海
有意者,请发简历到:[email protected]
/* */
职位名称Job Title: Researcher

上级主管Supervisor:Research Manager
部门Department: Research

地点Location: Shanghai
总体描述 Overall Description:
Responsible for research and solve the technical problem; excellent
knowledge and experience in at least 2 fields:... 阅读全帖
m*********t
发帖数: 527
43
来自主题: JobHunting版 - 在高盛当码农是什么个感觉?
金融公司又不只是做数学,这个世界上除了核心运算代码以外
还有很多需要写的。
另外,即使写数学程序,写的好的和不好的效率差别大了。怎么提高 cache coherence
,等等。
比如你可以试试自己用 C++ 写个矩阵运算的库,然后
拿来和 Eigen 比比。
E***e
发帖数: 3430
44
来自主题: JobHunting版 - 在高盛当码农是什么个感觉?
问题是现在没公司雇人写CPU上的matrix library
都是直接上eigen/armadillo/openblas了
最多也就是雇人写个cuda的interface
但是也不需要雇多少
一个公司contract两三个人一年
再内部培训两三个full time就够了

coherence
h*****e
发帖数: 1153
45
call c++ 吧。 用mkl或者免费的eigen

numpy
r***l
发帖数: 45
46
简历送到邮箱: [email protected]。
Software Engineer –Computer Vision - (Autonomous Systems)– SF bay area CA
Intern/ Part-time/Full-time
Responsibilities:
Contribute to the development of state-of-the-art algorithms for depth-
sensing, visual odometry, SLAM, and camera calibration. You'll be working
closely with our world class Sensor Fusion experts and directly impacting
the next generation of self-driving vehicles and UAVs.
Qualifications:
- Masters or PhD Computer Science, Electrical Engineerin... 阅读全帖

发帖数: 1
47
Software Engineer –Computer Vision - (Autonomous Systems)
Salary$100k/year (Intern 50%)
Job Description
Company Introduction
 
The hiring company is a small, Pre-A stage startup in Silicon Valley. They
are developing hardware and software solutions for autonomous systems
include cars, UAVs, and robots. The company is backed by major venture
capitals and just received funds for mass production of their products.
Support H1B and Green card application.
Responsibilities
 
Contribute to th... 阅读全帖
n**********4
发帖数: 2719
48
来自主题: Parenting版 - 什么时候给孩子引入方程概念
主要是概念,比如rank,eigenvalue eigen vector这些,概念上挺有用的。这些东西
做点应用题。我们小时候算术应用题做太多,到高等数学又一点应用题不做了
g******a
发帖数: 48
49
来自主题: Postdoc版 - 没见过如此好笑的剽窃
没见过如此好笑的剽窃,不但抄袭范围达100%,而且在同一学报上一字未改地一搞两投
,还被发表。是一个巴基斯坦的journal 叫做Journal of Theoretical and Applied
Information Technology http://www.jatit.org/
这里是文章全文
http://www.jatit.org/volumes/research-papers/Vol6No2/6Vol6No2.p
Title: Eigen Value Techniques for Small Signal Stability Analysis in Power
System Stability
Author: G Naveen Kumar, Dr. M. Surya Kalavathi, B. Ravindhranath Reddy.
整篇文章是拼凑自两篇文章,抄袭范围达100%。
头7页是原封不动的抄袭以下文章
1.Jian Ma, Zhao Yang Dong, Pei Zhang, “Comparison of BR and QR Eigenvalue
Al... 阅读全帖
w***t
发帖数: 8175
50
来自主题: Immigration版 - immigration board
is so hot now. Even the #1
版面 版主
1 落地生根 barry
2 电子商务 blueclassic
3 购物天堂 blackbone
4 我爱我家 baren
5 中国新闻 eigen
6 超级秀场 zhizunbao
7 篮球 zhuxie
8 肚皮舞运动 Corinthian
9 股海弄潮 scarface
10 海外理财 zengdl
barry, fa baozi ba.
首页 上页 1 2 3 4 5 6 下页 末页 (共6页)