Redian新闻
>
How solid it is: c++/c# call Matlab library
avatar
t*n
2
在线的也行,不用太复杂,就是我输入所有持有基金的代码和股数,它会自动分析这个
portfolio里面一共US Large-cap,mid cap,small cap, international stock, bond ,
....的比例,这样做rebalance的时候就一目了然了。
avatar
a*2
3
rt。我看北京的2月份都可以约了。成都怎么那么慢啊?
avatar
v*x
4
EB2 TX center
PD 6/9/2006,07年大潮的时候交的485.
这周排期刚到,上周四(Dec 30)在congress representative和senate的网页上写了
信。其他没有做什么。
今天突然就同时收到三封信。1.congressman的回信,dated 1/6/2011,说submitted a
request to USCIS, 2.I797,welcome notice.dated 1/3/2011. 3.绿卡 1/4/2011.
网上状态没变。
2001年来的美国,快10年,06年初F1->H1,07年初批的140,09年1月续了H-1,不太喜欢
travel,这期间也没回国,所以感觉有没有绿卡日子照过。
avatar
w*s
6
what's your user experience ?
avatar
W*e
7
600591 1:1.3换股,再涨获利盘太多了

【在 L********3 的大作中提到】
: rt
avatar
s*y
8
fidelity has it.

,

【在 t***n 的大作中提到】
: 在线的也行,不用太复杂,就是我输入所有持有基金的代码和股数,它会自动分析这个
: portfolio里面一共US Large-cap,mid cap,small cap, international stock, bond ,
: ....的比例,这样做rebalance的时候就一目了然了。

avatar
d*e
9
GXGX!

a

【在 v****x 的大作中提到】
: EB2 TX center
: PD 6/9/2006,07年大潮的时候交的485.
: 这周排期刚到,上周四(Dec 30)在congress representative和senate的网页上写了
: 信。其他没有做什么。
: 今天突然就同时收到三封信。1.congressman的回信,dated 1/6/2011,说submitted a
: request to USCIS, 2.I797,welcome notice.dated 1/3/2011. 3.绿卡 1/4/2011.
: 网上状态没变。
: 2001年来的美国,快10年,06年初F1->H1,07年初批的140,09年1月续了H-1,不太喜欢
: travel,这期间也没回国,所以感觉有没有绿卡日子照过。

avatar
a*l
11
再solid的系统也受不了傻瓜的瞎折腾.matlab自己其实就是一个壳,matlab调用的库和
你用c调用的是一样的.

【在 w*s 的大作中提到】
: what's your user experience ?
avatar
L*3
12
东航今天怎么风不住涨停?
avatar
t*n
13
fidelity 只能看他自己帐号里面的吧。
要是我在vanguard也有fund呢?

【在 s********y 的大作中提到】
: fidelity has it.
:
: ,

avatar
l*e
14
Congs~
avatar
w*s
16
want to know if there're any issues, that's it.

【在 a****l 的大作中提到】
: 再solid的系统也受不了傻瓜的瞎折腾.matlab自己其实就是一个壳,matlab调用的库和
: 你用c调用的是一样的.

avatar
L*3
17
呵呵,又要涨停了。
avatar
s*z
18
morningstar x-ray

【在 t***n 的大作中提到】
: fidelity 只能看他自己帐号里面的吧。
: 要是我在vanguard也有fund呢?

avatar
f*c
19
Congratulations!
avatar
a*l
21
只要你的c程序是正确的,不应该有任何问题。为什么这么说?有matlab这个使用了多
年的大程序再那里,还不够证明吗?

【在 w*s 的大作中提到】
: want to know if there're any issues, that's it.
avatar
t*n
22
这个功能正是我想要的,不过premium如此user才有这个功能吧,不便宜啊

★ 发自iPhone App: ChineseWeb - 中文网站浏览器

【在 s********z 的大作中提到】
: morningstar x-ray
avatar
d*1
23
恭喜恭喜,俺也是6/9的,是NSC的,还在等
avatar
z*i
24
现在技术能做出来一样一样的.

【在 A*********t 的大作中提到】
: 小虾米认为是看齿。
avatar
k*g
25
If you need to handle large data and your application (not OS) is 32-bit,
you will see memory fragmentation (in the form of premature "out-of-memory"
errors soon.)
When MATLAB calls a C extension, the C extension must return all its data (
states) as a MATLAB output variable. A C extension must not try to remember
its states via global variables because this can create hard-to-fix bugs.
Long-running and batch-processing applications involving MATLAB should
implement application checkpoints: http://en.wikipedia.org/wiki/Application_checkpointing The application should periodically write its intermediate result to disk, so that if the application is interrupted (such as from an "out-of-memory" error), the application can be restarted from the most recent checkpoint.
Memory used to back a MATLAB matrix variable must be allocated using MATLAB'
s memory allocator. Do not use the C/C++ standard library "new" or "malloc"
for matrix variables. Conversely, do not use MATLAB's memory allocator for
variables used only in your C code.
If you need to make robust applications (such as industrial-strength
applications), use process isolation. (Perform the work in a separate
running instance of MATLAB.)
Just 2 cents, might have errors.
avatar
n*u
26
no, free account can use that

【在 t***n 的大作中提到】
: 这个功能正是我想要的,不过premium如此user才有这个功能吧,不便宜啊
:
: ★ 发自iPhone App: ChineseWeb - 中文网站浏览器

avatar
h*l
27
Cong!Baozi
avatar
w*s
29
perfect, this is what i want to learn, thanks very much !

"
remember
MATLAB'
"

【在 k**********g 的大作中提到】
: If you need to handle large data and your application (not OS) is 32-bit,
: you will see memory fragmentation (in the form of premature "out-of-memory"
: errors soon.)
: When MATLAB calls a C extension, the C extension must return all its data (
: states) as a MATLAB output variable. A C extension must not try to remember
: its states via global variables because this can create hard-to-fix bugs.
: Long-running and batch-processing applications involving MATLAB should
: implement application checkpoints: http://en.wikipedia.org/wiki/Application_checkpointing The application should periodically write its intermediate result to disk, so that if the application is interrupted (such as from an "out-of-memory" error), the application can be restarted from the most recent checkpoint.
: Memory used to back a MATLAB matrix variable must be allocated using MATLAB'
: s memory allocator. Do not use the C/C++ standard library "new" or "malloc"

avatar
t*n
30
免费的不行吧,看附件。

【在 n****u 的大作中提到】
: no, free account can use that
avatar
r*o
31
Cong!
avatar
l*o
32
汗了 人家不是写着假票了吗

【在 z****i 的大作中提到】
: 不是假的,感觉是从首日封上皆下来的.
avatar
w*s
33
BTW, how's the performance of c++ code calling matlab library ?
i never used it so what to ask guru.
we have a hard requirement for performance for c++ real-time transactions,
so ...
also for statistical computation, any other good libs besides matlab ?

"
remember
MATLAB'
"

【在 k**********g 的大作中提到】
: If you need to handle large data and your application (not OS) is 32-bit,
: you will see memory fragmentation (in the form of premature "out-of-memory"
: errors soon.)
: When MATLAB calls a C extension, the C extension must return all its data (
: states) as a MATLAB output variable. A C extension must not try to remember
: its states via global variables because this can create hard-to-fix bugs.
: Long-running and batch-processing applications involving MATLAB should
: implement application checkpoints: http://en.wikipedia.org/wiki/Application_checkpointing The application should periodically write its intermediate result to disk, so that if the application is interrupted (such as from an "out-of-memory" error), the application can be restarted from the most recent checkpoint.
: Memory used to back a MATLAB matrix variable must be allocated using MATLAB'
: s memory allocator. Do not use the C/C++ standard library "new" or "malloc"

avatar
m*r
34
What about mint.com?
avatar
G*y
35
You are lucky for applying GC so quick after working. I started working in
2005 and initiated GC application a year later and got Nov. 2006 PD. //sigh

a

【在 v****x 的大作中提到】
: EB2 TX center
: PD 6/9/2006,07年大潮的时候交的485.
: 这周排期刚到,上周四(Dec 30)在congress representative和senate的网页上写了
: 信。其他没有做什么。
: 今天突然就同时收到三封信。1.congressman的回信,dated 1/6/2011,说submitted a
: request to USCIS, 2.I797,welcome notice.dated 1/3/2011. 3.绿卡 1/4/2011.
: 网上状态没变。
: 2001年来的美国,快10年,06年初F1->H1,07年初批的140,09年1月续了H-1,不太喜欢
: travel,这期间也没回国,所以感觉有没有绿卡日子照过。

avatar
z*i
36
我没有看说明,但是看样品和真的一样.

【在 l******o 的大作中提到】
: 汗了 人家不是写着假票了吗
avatar
t*m
37
从 t rowe price 网站连到 morning star,
就可以免费用 x-ray了。

【在 t***n 的大作中提到】
: 免费的不行吧,看附件。
avatar
y*u
38
GXGX
finally some good news
avatar
A*t
39
我是指这套的齿假

【在 z****i 的大作中提到】
: 现在技术能做出来一样一样的.
avatar
t*n
40
多谢了
反正也没有几只基金,就自己用excel做了个表,然后matlab线性拟合来决定如何rebalance

★ 发自iPhone App: ChineseWeb - 中文网站浏览器
★ 发自iPhone App: ChineseWeb - 中文网站浏览器

【在 t*m 的大作中提到】
: 从 t rowe price 网站连到 morning star,
: 就可以免费用 x-ray了。

avatar
r*e
41
cong. baozi

a

【在 v****x 的大作中提到】
: EB2 TX center
: PD 6/9/2006,07年大潮的时候交的485.
: 这周排期刚到,上周四(Dec 30)在congress representative和senate的网页上写了
: 信。其他没有做什么。
: 今天突然就同时收到三封信。1.congressman的回信,dated 1/6/2011,说submitted a
: request to USCIS, 2.I797,welcome notice.dated 1/3/2011. 3.绿卡 1/4/2011.
: 网上状态没变。
: 2001年来的美国,快10年,06年初F1->H1,07年初批的140,09年1月续了H-1,不太喜欢
: travel,这期间也没回国,所以感觉有没有绿卡日子照过。

avatar
s*k
42
这个印刷不好,齿还行,靠,假的也卖了355刀。网上搜了一下,好像gum没有?
如何鉴别“纪94梅兰芳舞台艺术(有齿票)”邮票真假?主要从以下几个方面鉴别:
1、看纸质
真品采用邮票纸印制,纸质挺括、坚韧,吸墨性能好。
伪品采用铜版纸印制,纸面洁白光亮。
2、看版别和刷色
真品采用影写版印制,刷色自然、真实,色彩纯正、鲜亮。
伪品用真品翻版印制而成,色彩不纯正,有的偏色,有的彩色线条模糊不清;用高倍放大镜观察,邮票图
案上的网点清晰可见,文字也有因彩色网点套印不准而出现的暗影。
3、看背胶
真品刷有背胶,为糊精胶,胶面厚而光亮,呈淡黄色。
伪品无背胶,背面呈铜版纸洁白光亮的特点。
4、看齿孔
真品齿孔11.5度,齿孔打得均匀而笔直。
伪品有一种打着齿孔,个别齿孔呈现不够均匀的情况;另外一种没有打齿孔,只印有模拟齿孔,据说这种
伪品由俄罗斯人携带到中国和美国出售。
5、看邮票上的铭记和面值
真品上的铭记“中国人民邮政”和面值数字等字样,均印得整齐、清晰,黑字边缘上,无网点,不发虚。
伪品的黑字边缘上,用高倍放大镜可清晰看到套印的网点。
6、用鉴伪仪鉴别
真品采用邮票纸制,在鉴伪仪的紫光灯照射下,呈暗紫色。
伪品呈亮白色。

ViewItem&item=190552897314&ssPageName=STRK:MEWAX:IT#ht_500wt_1202

【在 b*****n 的大作中提到】
: 假得厉害,相比较而言,下面的假票水平要高一丁点:
: http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItem&item=190552897314

avatar
S*C
43
if you use index funds, a piece of paper will be enough; if you use active
fund, you only know dated snapshot, no need and impossible to rebalance to
your accurate AA. Besides, you want to give active managers great freedom to
find value for you. If you really want control, you better off using index
funds.

【在 t***n 的大作中提到】
: 在线的也行,不用太复杂,就是我输入所有持有基金的代码和股数,它会自动分析这个
: portfolio里面一共US Large-cap,mid cap,small cap, international stock, bond ,
: ....的比例,这样做rebalance的时候就一目了然了。

avatar
G*U
44
congrats!
avatar
t*n
46
a piece if paper 不行吧。要balance好US/international stock,bond,large/med/
small cap,而且每支基金都有点blender。还有,这些基金散布在几个broker/IRA账户
里面,所以这里也有一个constrain,就是不能无限制的买卖任何一支基金。
所以最好就是做一个有constrain的linear regression,得出在目前状况下趋近目标
allocation的最优解。

to
index

【在 S**C 的大作中提到】
: if you use index funds, a piece of paper will be enough; if you use active
: fund, you only know dated snapshot, no need and impossible to rebalance to
: your accurate AA. Besides, you want to give active managers great freedom to
: find value for you. If you really want control, you better off using index
: funds.

avatar
s*0
47
GX!
avatar
n*u
49
google morningstar x ray
i can use it without logging in

【在 t***n 的大作中提到】
: 免费的不行吧,看附件。
avatar
B*k
50
congratulations!

a

【在 v****x 的大作中提到】
: EB2 TX center
: PD 6/9/2006,07年大潮的时候交的485.
: 这周排期刚到,上周四(Dec 30)在congress representative和senate的网页上写了
: 信。其他没有做什么。
: 今天突然就同时收到三封信。1.congressman的回信,dated 1/6/2011,说submitted a
: request to USCIS, 2.I797,welcome notice.dated 1/3/2011. 3.绿卡 1/4/2011.
: 网上状态没变。
: 2001年来的美国,快10年,06年初F1->H1,07年初批的140,09年1月续了H-1,不太喜欢
: travel,这期间也没回国,所以感觉有没有绿卡日子照过。

avatar
s*k
51
看不出破绽,我认为是真的,除非拿到实物在用放大镜看

【在 l******o 的大作中提到】
: 难道这套不真?
avatar
e*o
52
gxgx~~

a

【在 v****x 的大作中提到】
: EB2 TX center
: PD 6/9/2006,07年大潮的时候交的485.
: 这周排期刚到,上周四(Dec 30)在congress representative和senate的网页上写了
: 信。其他没有做什么。
: 今天突然就同时收到三封信。1.congressman的回信,dated 1/6/2011,说submitted a
: request to USCIS, 2.I797,welcome notice.dated 1/3/2011. 3.绿卡 1/4/2011.
: 网上状态没变。
: 2001年来的美国,快10年,06年初F1->H1,07年初批的140,09年1月续了H-1,不太喜欢
: travel,这期间也没回国,所以感觉有没有绿卡日子照过。

avatar
r*3
53
我小时候集邮,这套梅兰芳好像有其中三张,不知道现在都扔到哪去了。。。一本各类
零散老邮票啊
avatar
m*g
54
GXGX
avatar
s*k
55
可惜了,好多刀扔掉了

【在 r*******3 的大作中提到】
: 我小时候集邮,这套梅兰芳好像有其中三张,不知道现在都扔到哪去了。。。一本各类
: 零散老邮票啊

avatar
s*d
56
congratulation
avatar
r*3
57
下次回国狠狠找!找到了带过来换猫!

【在 s*k 的大作中提到】
: 可惜了,好多刀扔掉了
avatar
g*9
58
GXGX!!!!
avatar
t*r
60
祝贺祝贺!

a

【在 v****x 的大作中提到】
: EB2 TX center
: PD 6/9/2006,07年大潮的时候交的485.
: 这周排期刚到,上周四(Dec 30)在congress representative和senate的网页上写了
: 信。其他没有做什么。
: 今天突然就同时收到三封信。1.congressman的回信,dated 1/6/2011,说submitted a
: request to USCIS, 2.I797,welcome notice.dated 1/3/2011. 3.绿卡 1/4/2011.
: 网上状态没变。
: 2001年来的美国,快10年,06年初F1->H1,07年初批的140,09年1月续了H-1,不太喜欢
: travel,这期间也没回国,所以感觉有没有绿卡日子照过。

avatar
r*0
62
恭喜恭喜,包子!
avatar
L*y
63
gxgx
avatar
M*5
64
Congratulations!
avatar
d*o
65
恭喜恭喜
avatar
m*h
66
cong

a

【在 v****x 的大作中提到】
: EB2 TX center
: PD 6/9/2006,07年大潮的时候交的485.
: 这周排期刚到,上周四(Dec 30)在congress representative和senate的网页上写了
: 信。其他没有做什么。
: 今天突然就同时收到三封信。1.congressman的回信,dated 1/6/2011,说submitted a
: request to USCIS, 2.I797,welcome notice.dated 1/3/2011. 3.绿卡 1/4/2011.
: 网上状态没变。
: 2001年来的美国,快10年,06年初F1->H1,07年初批的140,09年1月续了H-1,不太喜欢
: travel,这期间也没回国,所以感觉有没有绿卡日子照过。

avatar
m*s
67
gxgx...

a

【在 v****x 的大作中提到】
: EB2 TX center
: PD 6/9/2006,07年大潮的时候交的485.
: 这周排期刚到,上周四(Dec 30)在congress representative和senate的网页上写了
: 信。其他没有做什么。
: 今天突然就同时收到三封信。1.congressman的回信,dated 1/6/2011,说submitted a
: request to USCIS, 2.I797,welcome notice.dated 1/3/2011. 3.绿卡 1/4/2011.
: 网上状态没变。
: 2001年来的美国,快10年,06年初F1->H1,07年初批的140,09年1月续了H-1,不太喜欢
: travel,这期间也没回国,所以感觉有没有绿卡日子照过。

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