j***y 发帖数: 2074 | 1
如果能写成这样,那么就可以写成int fun(int **p)了。
记得int main(int argc, char *argv[])也可以写成int main(int argc, char **argv)
Chevy提供的是正确的用法。
相似的例子在K&R的书上也有:
If a two-dimensional array is to be passed to a function, the parameter
declaration in the function must include the number of columns; the number
of rows is irrelevant, since what is passed is, as before, a pointer to an
array of rows, where each row is an array of 13 ints. In this particular
case, it is a pointer to objects that are arrays of 13 ints. Thus i... 阅读全帖 |
|
c**********e 发帖数: 2007 | 2 C++ Q93: formal parameter T
What is the purpose of declaring the formal parameter T?
A. T specifies that any data sent to the function template must be of type T
B. T is a place-holder for a C++ data type
C. T can only hold a single data type int
D. T can hold any language data type
C++ Q94: Pointer
Multiple choices: Identify the true statements about the use of pointers in
C++.
A. A pointer is a variable that can contain the memory address of another
variable as its value
B. Although not necess... 阅读全帖 |
|
t****t 发帖数: 6806 | 3 if the two constructors of B can be distinguished, then D's two
instantiations can be distinguished.
suppose you have
B::B(const char*, int);
B::B(int, const char*);
B::B(double, float);
and template:
template
D::D(T1 t1, T2 t2) : B(t1, t2) {}
you can write
B b1("abc", 1), b2(2, "def"), b3(1.234, 5.678f);
D d1("ABC", 3), d2(4, "DEF"), d3(10.987, 6.543f);
clear enough?
as for your other question, if you have a 100 parameter constructor, you do
have to write 100 paramete... 阅读全帖 |
|
s******n 发帖数: 3946 | 4 他的意思是假设是operator重载
++i先做++再放在stack上,i++则先复制一份copy到stack上再做++,多了一份复制(假
设编译无优化)
大家看有道理吗?
I did a real test on arm compiler turn off optimization:
the O0 code is exactly the same, except that post operator++()(int dummy)
has an extra dummy parameter which is required by c++ to identify the
difference of prefix and postfix.
2nd, even I change the Test& operator++() into Test operator++(), it still generates the same code.
printf("%d \n", 10+ (abc++).value);
sub r3, fp, #8
mov r0, ... 阅读全帖 |
|
s******n 发帖数: 3946 | 5 the O0 code is exactly the same, except that post operator++()(int dummy)
has an extra dummy parameter which is required by c++ to identify the
difference of prefix and postfix.
2nd, even I change the Test& operator++() into Test operator++(), it still generates the same code.
printf("%d \n", 10+ (abc++).value);
sub r3, fp, #8
mov r0, r3
mov r1, #0 --> the dummy parameter of postfix
bl _ZN4TestppEi
mov r3, r0
ldr r3, [r3, #0... 阅读全帖 |
|
c**********e 发帖数: 2007 | 6 1. Is the C++ template parameters decided at the compiling time or running
time?
2. How do you know the C++ template parameters are decided at the compiling
time or running time?
1 is simple. But how to answer 2? Thanks a ton. |
|
h*****f 发帖数: 248 | 7 1. Compile time because template initialization is done during the compile
time and the initialization is based on the "known" template parameter(s)
during the compile time.
2. A way to prove:
#include
#include
template class Buffer {
char internal[max];
public:
void printSize() {
printf("buffer size=%lu\n", sizeof(internal));
}
};
int main() {
Buffer<512> my512;
my512.printSize();
size_t v;
std::cin >> v;
printf("my input=%lu\... 阅读全帖 |
|
M***y 发帖数: 1594 | 8 Xuemei (Maisy) Huang
32560 Stony Brook Lane, Solon, OH 44139
Email:m*********[email protected], Phone: 440-498-2222(h), 216-978-5913(c)
Skills
Comprehensive experiences on scientific computation/simulation
and algorithm development
Hand-on experiences on multiple programming Languages including
Matlab, C/C++/C#, Perl, F77/F90, shell scripts, Java, SAS, Labview, Python
and SQL
System administration skills on Microsoft Windows, Linux
operation systems and computer ha... 阅读全帖 |
|
r*****i 发帖数: 917 | 9 Senior Test Engineer (high-end)
Roles & Responsibilities:
• Development and operation of Li-ion battery assembly process
• Hands-on operation of aqueous and non-aqueous electrochemical
battery test equipment, interpretation of results and development of
operating parameters.
• Hands-on operation of diagnostic instruments such as
electrochemical impedance spectrometry, and performing test of thermal
cycling stability, mechanical durability, failure mode and hazard
ident... 阅读全帖 |
|
p*******e 发帖数: 746 | 10 面试遇上如此问题,如何组织思路,回答到位?请大牛支招,不胜感激啊!Will 买包子
供应!!
面试职位 Data Analyst, 有统计背景, Any response will be greatly appreciated!
The following four points describe common work activities performed at XX.
Which appeals to you most? Why?
1.Extract and analyze data to compare the spending, risk, and response to
four products were offered 12 months ago. The results, including statistical
significance, will be grouped by six parameters used to segment the
population.
2.Extract data and produce graphs to monitor ca... 阅读全帖 |
|
I*********e 发帖数: 61 | 11 Reverse Integer
Reverse digits of an integer.
Example1: x = 123, return 321
Example2: x = -123, return -321
Have you thought about this?
Here are some good questions to ask before coding. Bonus points for you if
you have already thought through this!
If the integer's last digit is 0, what should the output be? ie, cases such
as 10, 100.
Did you notice that the reversed integer might overflow? Assume the input is
a 32-bit integer, then the reverse of 1000000003 overflows. How should you
handle su... 阅读全帖 |
|
e****e 发帖数: 418 | 12 和算法没关吧。我想可能是一旦有错误(overflow)发生,因为不能抛出异常,需要一个
extra parameter来记录错误信息的。例如,extra parameter可以是个List类。
function |
|
f********d 发帖数: 51 | 13 private int getAccessCode(int idx, PlaylistFlagParameter parameter) {
Field field = PlaylistFlagParameter.class.getDeclaredMethod("Access" + idx
);
if (field.getBoolean(parameter)) {
return 1<
}
return 0;
}
private static byte getHopperAccessCode(PlaylistFlagsParametersWrapper
wrapper) {
int bitflag = 0;
for (int i = 0; i < 8; i++) {
bitflag += getAccessCode(i, wrapper);
}
return (byte)bitflag;
} |
|
|
b*****a 发帖数: 70 | 15 My friend works at Google told me it is Google C++ style. Because the value
of non-const reference can be modified so if you want to modify it, passing
it with pointer such that caller can understand this parameter will be
modified; otherwise const reference will be used for passing parameters that
won't be modified.
http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml?
In conclusion, I think this is a better Google C++style.
stuff |
|
b*********7 发帖数: 37 | 16 大家好
我是即将毕业的博士生(第五年),做的方向是RF/microwave的硬件。具体做过THz的
Probe,THz的测试,以及相关的高频器件。
几年前流过一次片,2.4GHz的RFIC(LNA+MIXER),不过不成功。所以board level
design没做。但是课程的project吧最后的这一步补上了。给定chip做两种放大器(LNA
, small signal),根据chip的s-parameter用ADS设计不同的input/output matching
network。
RF on-wafer test做过, probe station也都用过。RF的器件的测试懂一些,带过TA,
基本的gain, IIP3, NF, P1dB, s-parameter带着小本测了一学期。。。
Sensor以及sensor外围电路也懂一些,我的探头就集成了自己设计fab的strain sensor
,用来测定探头的接触力和接触角度。
Semiconductor fabrication经验还可以,大概四五年clean room experience了。常用
的设备除了CVD基本都用到... 阅读全帖 |
|
b*********7 发帖数: 37 | 17 大家好
我是即将毕业的博士生(第五年),做的方向是RF/microwave的硬件。具体做过THz的
Probe,THz的测试,以及相关的高频器件。
几年前流过一次片,2.4GHz的RFIC(LNA+MIXER),不过不成功。所以board level
design没做。但是课程的project吧最后的这一步补上了。给定chip做两种放大器(LNA
, small signal),根据chip的s-parameter用ADS设计不同的input/output matching
network。
RF on-wafer test做过, probe station也都用过。RF的器件的测试懂一些,带过TA,
基本的gain, IIP3, NF, P1dB, s-parameter带着小本测了一学期。。。
Sensor以及sensor外围电路也懂一些,我的探头就集成了自己设计fab的strain sensor
,用来测定探头的接触力和接触角度。
Semiconductor fabrication经验还可以,大概四五年clean room experience了。常用
的设备除了CVD基本都用到... 阅读全帖 |
|
m**********4 发帖数: 774 | 18 LZ做统计什么理论方向的?本科是学数学的吗?这些是ONSITE题吗?感觉你和GOOGLE里
的人可能没有TALK在一个频率上. GOOGLE的面试关键是看你能不能出活。举个简单的例
子,关于RIDGE REGRESSION你给了个Tikhonov Regularization。我个人觉得这个答案
可以,但如果我是面试官,我要接着问:
1 这个REGULARIZATION怎么用? 其中有个PARAMETER怎么选?我知道RIDGE是选了
IDENTITY MATRIX,那其他有什么可以接受的PARAMETERS?
2 它的INTUITION是什么?
GOOGLE里面DATA SET很大,没法做很FANCY的东西,顶多就是LASSO之类的。里面统计师
的模型大多简单到离谱,难了也没法跟PM解释。
’X |
|
R*********9 发帖数: 342 | 19 We have an immediate opening as "Statistical Analyst"
Description:
Perform analysis of claims and clinical databases to evaluate compliance
with federal and state mandates.
Track and analyze healthcare payment model parameters and estimates over
time.
Examine/monitor federal and state laws, rules and regulations to translate
them into compliance algorithms for use within the business intelligence
framework.
Identify health care service delivery and billing metrics that may become
useful complian... 阅读全帖 |
|
e*******s 发帖数: 1979 | 20 以下这段代码 把set的iterator直接传递到parameter为reference的函数里
报错
test.cpp: In function 'int main()':
test.cpp:110: error: invalid initialization of reference of type 'std::
string&' from expression of type 'const std::basic_string
traits, std::allocator >'
test.cpp:67: error: in passing argument 1 of 'void foo(std::string&)'
make: *** [a] Error 1
如果修改代码
1. void foo(string &s) --> void foo(string s)
2. string s = *it; foo(s);
3. void foo(string &s) --> void foo(cons... 阅读全帖 |
|
w********p 发帖数: 948 | 21 下面这个是收到的coding exercise, 烦请帮忙看看。
Please design, code and send back a complete, production ready module,
第一步:
* if CLI parameter is “-g [foler_name]"
** generates 100 files in a specified folder, named from 001.txt to 100.txt
** each file contains 10,000 text lines
** each line is a space separated list of random 10 integers
** each integer contains 8 digits
** prints file generation timing statistics
*** per file
*** total
第二步
* if CLI parameter is “-s [foler_name]"
** reads 10 files from a spec... 阅读全帖 |
|
w********s 发帖数: 1570 | 22 The basic idea of OT can be illustrated by using a simple text editing
scenario as follows. Given a text document with a string "abc" replicated at
two collaborating sites; and two concurrent operations:
O1 = Insert[0, "x"] (to insert character "x" at position "0")
O2 = Delete[2, "c"] (to delete the character "c" at position "2")
generated by two users at collaborating sites 1 and 2, respectively. Suppose
the two operations are executed in the order of O1 and O2 (at site 1).
After execut... 阅读全帖 |
|
u***n 发帖数: 21026 | 23 太classic,烙印微软就那个德行,manager屁都不懂觉得给他code就是小孩作业,一个
下午就能给你搞定似的,都是SB,同样一个数据不同的parameter而且,要去不同的sp
取,你麻痹连column name都不一样,最后前面要统一,你说这个岂不是要花时间做逻
辑,你麻痹的微软SB烙印和我说这个玩意2~3小时就能弄好。有本事你自己写啊,在
service统一接口掉不同DB, 前台还要做JS Ajax render呢,2~3小时,你麻痹使唤奴
隶呢?有本事你自己弄去,今天又和他吵一架,反正我也不吊了,下周vacation,回来
就辞职,你麻痹自己2小时做个成品出来看看,神经病,微软就是给那帮子屁都不懂的
烙印搞死了。
一个好的team是应该PM来询问developer需要时间进度,而不是自己单方面来决定时间
进度。developer的能力不一样,还有对项目熟悉也不一样,用的时间怎么可能是由你
决定呢。起码你要把项目的需求先提出来,给点时间让分析分析。总是觉得后面
service都已经可以用了,一查,缺好多parameter,还要DBA去重做,你TMD当写code和
玩似的啊。... 阅读全帖 |
|
t******c 发帖数: 348 | 24 Thanks!
I just found this post https://dev.twitter.com/rest/public/timelines,
explained how to handle the pagination issue with new feed coming in real
time: add a max_id parameter to track the lowest id received.
In another case, to receive the latest feed without duplication, add a since
_id parameter to track the highest id received.
Hope it helps! |
|
u*******m 发帖数: 3395 | 25 Hi ,
Greeting from Avion Systems,
We have job openings POSITION TITLE: RF Engineers with our client Alcatel-
Lucent.
If you are interested reply me with the following information with your
updated resume to
mail id – j***********[email protected].
Otherwise I request to refer your friends by forwarding this mail to them.
Details needed:
Kindly Mention the Order #:……. For which job description you are
matching.
Last Position:
Expected Rate:
Duration to Join:
... 阅读全帖 |
|
o********n 发帖数: 1329 | 26 From: HR Communications
Sent: Friday, September 20, 2013 11:10 AM
To: +Billerica-All Users; +Hackensack-All Users; +Perceptive-East Windsor; +
Perceptive-Wayne; +Waltham-All Users
Subject: Featured Job Openings for Northeast [on behalf of Rose Barsumian]
Featured Job Openings for Northeast
Do you know the perfect candidate for a job at PAREXEL?
These Featured Jobs highlight open positions in your local area and there
may be others so please check the Employee Referral website for a full
listing ... 阅读全帖 |
|
t********r 发帖数: 152 | 27 具体问题就是
在view里面我有一个form 有四个value(startDate, endDate, product and category)
用户填入信息后点击 submit
这四个value会被send到view model里面 然后这四个value作为view model里一个
method的parameters call method后application会显示这个method return的数据
目前为止 这个project基本完成 hardcode这四个parameters在view model里面数据可
以显示
但是data不能从view 到 view model
这个问题应该不难 但是我对.net不是很熟悉 关于databinding 的tutorial也没有找到
比较好的
希望熟悉的C# wpf的筒子提供点意见 或者站内联系 有偿 |
|
p*******m 发帖数: 20761 | 28 Access control bypass in Hikvision IP Cameras
From: Monte Crypto
Date: Tue, 12 Sep 2017 04:19:00 +0200 (CEST)
Access control bypass in Hikvision IP Cameras
Full disclosure
Sep 12, 2017
Synopsis:
---------------
Many Hikvision IP cameras contain a backdoor that allows unauthenticated
impersonation of any configured user account.
The vulnerability has been present in Hikvision products since at least 2014
. In addition to Hikvision-branded devices,
it affects many whi... 阅读全帖 |
|
b*h 发帖数: 637 | 29 自从怀孕了,体重就在长,这两周更是控制都控制不住。(我其实算是可能得孕妇糖尿
病的高危人群。可能得的原因中我占了三。。具体的就不说了。) 还有3周做糖筛,我
想现在就买个血糖仪或是血糖试纸, 想看看要是血糖高了,就严格控糖了。 其实就算
是不高,我也应该控制了。(自己估计血糖低不了。)
用普通的尿液分析试纸能不能大体看出血糖和尿汞?在OB那里看到他们每次测尿也就是
用这种
Rapid Response 10 Parameter (10SG) Urinalysis Reagent Test Strips
试纸。 不知道这么测试能不能测出糖妈?
http://www.amazon.com/Response-Parameter-Urinalysis-Reagent-Str
如果自费买血糖仪的话,有哪个牌子的比较好呀。虽然有保险,但是自己在没做糖筛之
前,就想买血糖仪。当然这个保险可能不cover了。有没有简便血糖仪,先短期测的。
等糖筛结果出了,再按情况买长期用的。考古看到
one touch mini
accu check
one touch ultra
FreeStyle
Wave Se... 阅读全帖 |
|
r********h 发帖数: 5638 | 30 Reverse osmosis (RO) is a water purification technology that uses a
semipermeable membrane. This membrane technology is not properly a
filtration method. In reverse osmosis, an applied pressure is used to
overcome osmotic pressure, a colligative property, that is driven by
chemical potential, a thermodynamic parameter. Reverse osmosis can remove
many types of molecules and ions from solutions, and is used in both
industrial processes and producing potable water. The result is the solute
is retai... 阅读全帖 |
|
m********0 发帖数: 2717 | 31 别的论坛上有一些人用netral network或者support vector machine做,还有一些有意
思的讨论,我都快不记得SVM了,不过一直想试试weighted majority algorithms。关
于WA用在trading strategy上的论文还不少,我看了一些,都蛮有意思的,
Learning to trade with incremental support
vector regression experts
这篇好像用了SVM结合WA,很简短,但是从它的结论看,最后的expert是很轻松地beat
best expert(in components)。这点我不怀疑,本来boost algorithm就是把weak
learner变成strong learner的。除非market是100% efficient,总是存在weak
learner的(better than coin toss)。
Evolutionary Algorithms in Optimization of Technical Rules for
Automated Stock Tr... 阅读全帖 |
|
C****a 发帖数: 1639 | 32
I just mean that any good model should not heavily rely on parameter
selection.
Yeah, the market condition is constantly changing and the model should be
trained to be adaptive to the
market. If time frame is also a parameter for the adaptive model, the model
should not so rely on how long
you look back. |
|
S******n 发帖数: 1009 | 33 I didn't use machine learning algorithms, which train
a model based on training data, and test the model on
future test data. My system just simply look for
tradable patterns based on domain
knowledge(resistance, breakout, etc).
I don't think there is overfitting of parameters,
because it's not easy to find a parameter working for
such a long time with various market conditions.
The winning rate seems too good to be true, maybe
there are some errors of the system.
works. Just a
train and test t... 阅读全帖 |
|
u********e 发帖数: 4950 | 34 ☆─────────────────────────────────────☆
guanjiu (酒倌副所) 于 (Tue Apr 26 14:50:16 2011, 美东) 提到:
就拿最简单的RSI,MACD为例子。简单起见,只考虑单一信号。
naive strategy可以两个threshold值。低于多少就买,高于多少就卖。就两个参数。
容易calibrate.
可能对买还问题不是太大,这个方法对卖效果不好。那么就增加点策略的灵活性, 比
如divergence. 绝对数值与相对数值(divergence)考虑起来,参数也多点。
俺没有自己考虑过这个问题。但是感觉起码这个单信号策略要能够小范围适应一下,比
如,补偿一点lead-lag.
☆─────────────────────────────────────☆
Caspia (情人草) 于 (Tue Apr 26 14:56:16 2011, 美东) 提到:
Do you have a concrete example?
☆─────────────────────────────────────☆
... 阅读全帖 |
|
s********z 发帖数: 5411 | 35 Here is the fine prints:
Terms of Use
All OptionsHouse customers with a valid funded account are eligible. Each "
friend" can be referred only once. New accounts must be opened within three
months of referral and funded with at least $1,000 for a cash account or $2,
000 for a margin account. You will be eligible for a $150 gift card, $150
credit or 30 commission-free trades (each referred to hereafter as a "bonus"
). If you choose the 30 commission-free trades option, account holders
receive a m... 阅读全帖 |
|
d********1 发帖数: 2462 | 36 请问:如果改了parameter到30 (default 14),MFI和 VTI都还好,MFI从67到了52,离
70的oversold有远了,在close to option expiration date附近,我觉得set
parameter to 30比14更合理,你觉得呢? (单纯有疑问,不是质疑哦) |
|
v*****k 发帖数: 7798 | 37 你改了参数把以前暴跌的时间包括进去了当然参数就下来了……
[在 deanregal1 (批灰皮的老鼠) 的大作中提到:]
:请问:如果改了parameter到30 (default 14),MFI和 VTI都还好,MFI从67到了52,
离70的oversold有远了,在close to option expiration date附近,我觉得set
:parameter to 30比14更合理,你觉得呢? (单纯有疑问,不是质疑哦)
:........... |
|
x*********n 发帖数: 28013 | 38 其实特别简单。
就是吃一段中间肉。
option定价原则基本就是time + 各种parameter,date to expiration是一个基本原则
,越近,time越骤减,而越近,risk越高。
他的策略就是,
我搞一段50天的,然后吃30天,20天就close,这样不会hit被强行执行。赚的premium
就是那些有volatility,但是慢慢小。
这个策略理论上面不错,缺点:
1. 如果是单边行情,比如一直涨,一直跌,这个30天就搞挂你。
2. 如果是earning date靠近,越靠近earning date,option越贵,那么short premium
是跟你自己走反。
独家秘笈:
这种策略在没有波澜下比较合适,不适合接近earning的。
然后!最重要的。
option定价有趋势,某个parameter突然高了,是代表了一种趋势,某个option突然
large volume,是趋势! |
|
x*********n 发帖数: 28013 | 39 其实特别简单。
就是吃一段中间肉。
option定价原则基本就是time + 各种parameter,date to expiration是一个基本原则
,越近,time越骤减,而越近,risk越高。
他的策略就是,
我搞一段50天的,然后吃30天,20天就close,这样不会hit被强行执行。赚的premium
就是那些有volatility,但是慢慢小。
这个策略理论上面不错,缺点:
1. 如果是单边行情,比如一直涨,一直跌,这个30天就搞挂你。
2. 如果是earning date靠近,越靠近earning date,option越贵,那么short premium
是跟你自己走反。
独家秘笈:
这种策略在没有波澜下比较合适,不适合接近earning的。
然后!最重要的。
option定价有趋势,某个parameter突然高了,是代表了一种趋势,某个option突然
large volume,是趋势! |
|
c*********o 发帖数: 1734 | 40 I will recommend the first three responds with the right background to the
editor.
There is no guarantee you will be picked by the editor. If you reviewed for
this journal before, do not email me.
Send email to c*********[email protected] with the following information:
You official name
Your degree
Your official organization
Your business email address
You business title
And brief introduction of your background.
Most important: register with IJP as a reviewer with your business email
address before ... 阅读全帖 |
|
Z*L 发帖数: 9598 | 41 ☆─────────────────────────────────────☆
xf1777 (xf1777) 于 (Mon Jun 13 22:57:14 2011, 美东) 提到:
笨人我一个月黑风高之夜被抓了。。。要罚140刀,真狠吖。。。吃一堑长一智了,想
来请教各位前辈。我听有人说让去traffic court然后ask for supervision,这个是需
要到了court然后张嘴巴说“I ask for supervision”吗?感觉好傻。。。上庭手续费
还有supervision手续费加起来应该也不少了吧。。。考古了一下没找到相关信息……
不知道有没有牛人前辈知道
如果不是考虑保险的事情就想干脆直接去交罚金算了,也有人说stop sign的罚单对保
险影响不大。。。不知道有没有比较懂的前辈来说说?
跪求指点。。。555555
☆─────────────────────────────────────☆
liam (吃饱吃好) 于 (Tue Jun 14 00:14:29 2011, 美东) 提到:
建议乖乖交钱。
我一个朋友超速吃罚单,当时警... 阅读全帖 |
|
s**e 发帖数: 29 | 42
这次是Google自己瞎整造成的
http://www.readwriteweb.com/archives/is_google_blocked_in_china.php
"In the last 24 hours "gs_rfai" started appearing in the URLs of Google sear
ches globally as part of a search parameter, a string of characters that sen
ds information about the query to Google so we can return the best result. B
ecause this parameter contained the letters rfa the great firewall was assoc
iating these searches with Radio Free Asia, a service that has been inaccess
ible in China for a long time |
|
H********9 发帖数: 29 | 43 To the semi equipment software engineers:
If a customer pays for a feature, such as adding a recipe parameter and how
to apply the parameter during the run. Does this customer has exclusive
rights to the feature and your future release to other customer can't
include the feature. Thus, after awhile you would have many different
versions, worst case: one for each customer. Is that common practice? |
|
t******n 发帖数: 239 | 44 可以打印啊。
print $amazon_****不能直接放在 private ***下面。要print,直接echo $this->
amazon_***就好了。
只有setParameters是public而且独立的,把echo $this->amazo_放在那,就能看到。
创建一个php文件,把你的class拷进去,在class之前加上:
$test_param = array(
'amazon_access_key' => 'tst_print_jdjfljaifejla131',
'amazon_secret_key' => 'tst_o094jljfa',
'amazon_associate_tag' => 'tst_liejiflafe'
);
$test_print = new GatherData();
$test_print->setParameters($test_param);
你运行php test_print.php,或者你有设置apache/php的话,放到DocumentRoot底下,
用浏览器就能看见了。
public function s... 阅读全帖 |
|
e*H 发帖数: 16 | 45 you need inf (not inx), sys, and wdfcoinstaller01009.dll (not chk one), and
of course cat file.
no need to pass -amd parameter to build.exe (is there really such a
parameter? the setenv.bat should already specified your target architecture)
toaster contains several drivers (bus/func/etc). which one were you trying
to install? and detailed steps / error messages. this way we can try to help
you |
|
g****e 发帖数: 62 | 46 给大家总结一下Fantasy的Strategy
parse player's game log.
set several parameters, and set up rules. (e.g, after 5 games window, hitting
< 0.100, then bench one game. After era > 5 for 3 games, then bench one....),
then use player's data, adjust parameters and rules to follow, optimize the
playing strategy.
让我们也有manage的依据呀
这里谢谢啦 |
|
z********i 发帖数: 2222 | 47 我只能说要是把两个人像游戏里列出来,比各项parameter,不光kidd,比nash强的可
不知三五个。。随便举个例子,像鲶鱼龙多这样的,可以算是进攻80防守80吧,纳什最
多进攻100,防守呢,有40吗?综合比起来纳什完败,140vs160,和基德比估计得
140vs180。
但篮球不是2k,判断一个球员的能力得看他在一只球队里的作用。。到太阳的第一个赛
季纳什就给了联盟一个惊艳,不管他来之前是第几,这都没意义。/事实是纳什来了,
总冠军的希望也来了,之前一点没有,这是球队实力质的提升。。这个surprise给nash
换来了MVP。。他第二个mvp又是通过surprise换来的,谁能想到阵容半残的太阳能赢那
么多场还一直挺到西部决赛。。甚至是这个赛季,开赛前多少人认为太阳进不了季后赛
?还是surprise...一次两次可以说是运气,这么多次除了把credit给纳什我想不出来
还有别的解释。。一个球员的价值是不能简简单单用分项的parameter来解释的,纳什
是个很好的例子。
至于没那过冠军,没进过final,拿这个说他也无可厚非。就像巴肥和马龙再不服气也
不敢说自己比邓肯强。 |
|
t******o 发帖数: 5314 | 48 clutch数据的parameter是相对固定的。先发火化胡子jones帕森斯四个,第五个是林还
是贝。你要是不同意他的parameter,那他的结论自然也不用看了。
对手不一样这个就没有办法量化了。一个赛季下来样本大了当然也可能有变化。不过目
前为止看上去贝表现好点。虽然我觉得也就是半斤八两的样子。
“Casspi,Omri - Harden,James - Howard,Dwight - Lin,Jeremy - Parsons,Chandler
的阵容净胜10.9分,是不是说明应该bench jones?”
这个结论明显缺条件啊
Dwight |
|
G***G 发帖数: 16778 | 49 现在有如下这些胃癌数据参数。老板让挖掘。我不知道挖掘什么。
有经验的请指点一下,这些临床数据中可以挖掘些什么?
how to do clinical analysis based on clinical data?
maybe this is a big question.
let's give an example. suppose we have the 200 gastric patients' data like
the following. What kind of analysis should be done? what parameters should
be focused
and what parameters should be ignored?
Classification by age
hospital days
Postoperation hospital day
Family history
Biopsy before surgery
Operation duration(min)
Surgeon
Anesthesia
Volume of blood tr... 阅读全帖 |
|
r********n 发帖数: 6979 | 50 今天做了点research. 大部分老美的说法是1-2分钟没有问题, 再长就不行了. 不过基
本都是经验之谈, 找到了这篇文章是evidence based. 作为大家参考
RE-EXAMINING "HOLDING YOUR BREATH" GUIDELINES
I've come across two truly fascinating studies concerning largemouth
bass and hypoxia. One was published a year ago, the other is set for
publication very soon. In both cases they studied varying amounts of air
exposure after exercise/angling that a bass could be subjected to. One
was done in the lab, one in the field. Both have reached the same basic
conclusion. C... 阅读全帖 |
|