Redian新闻
>
普渡大学招土木/材料方向博士后研究员
avatar
普渡大学招土木/材料方向博士后研究员# CivilEngineering - 土木工程
d*e
1
What is the rationale behind the sudden interest in
Functional Languages? It had been around for so long,
30 years or so, and there is no theory/technique
breakthrough happening right now.
avatar
l*q
2
The example is from Wiley MODULE 11, page 360:
Units of one bond and one warrant (to buy 10 shares of stock at $50/share)
are issued for $1030. Therafter, warrants trade at $40 and the bonds at $960
. The ralative market value of the warrants is 4% and the relative market
value of the bonds is 96%. Thus, $41.20 (.4X$1030) of the issue price is
assigned to the warrants.
DR Cash 1030
DR Bond discount 11.20
CR Bonds payable 1000
CR Paid in capital-stock warrants 41.20
If one warrant
avatar
b*6
3
Position: Postdoctoral Researcher
Location: The Department of Civil Engineering at Purdue University
Focus: Asphalt pavement and materials
Preferred Qualifications:
PhD in asphalt materials or pavements
Familiar with asphalt fracture or tension testing (i.e., UTM, AMPT, SVECD,
SCB, Tx Overlay test), asphalt mix design, pavement structure analysis, and
statistical analysis.
Contract Term: 2 years+
Contact: Jusang Lee, [email protected]/* */
avatar
p*o
4
Where did you see the "sudden" interests?
FP was introduced to mainstream languages like C++ since more than
10 years ago, not to mention scripting languages like python and
javascript. It's working but is not the silver bullet.
If you mean CMU's recent drop of OO courses, they actually plan to
teach both imperative and functional, with an emphasis on invariants
and pre/postconditions for verification. BTW, MIT replaced scheme
with python a few years ago.

【在 d**e 的大作中提到】
: What is the rationale behind the sudden interest in
: Functional Languages? It had been around for so long,
: 30 years or so, and there is no theory/technique
: breakthrough happening right now.

avatar
C*U
5
I don't have the textbook with me now but think that Becker mentions this
briefly in Chapter 7 (Stockholder's Equity, and it should be on the upper
portion of page next to Subscription, or the page after). I recall that
because I noticed that Becker uses the term (warrant) in there and thus went
back to Chapter 5 of Bond and compared them.
Anyway, they don't provide too much deails either, but my understanding is $
54 of stock price is a "fact", and warrant is supposed to be equivalent to
stock

【在 l****q 的大作中提到】
: The example is from Wiley MODULE 11, page 360:
: Units of one bond and one warrant (to buy 10 shares of stock at $50/share)
: are issued for $1030. Therafter, warrants trade at $40 and the bonds at $960
: . The ralative market value of the warrants is 4% and the relative market
: value of the bonds is 96%. Thus, $41.20 (.4X$1030) of the issue price is
: assigned to the warrants.
: DR Cash 1030
: DR Bond discount 11.20
: CR Bonds payable 1000
: CR Paid in capital-stock warrants 41.20

avatar
d*e
6

Actually the question could be rephrased as what good
does functional bring to parallel processing. I can
see the links from functional->recursion->parallel,
but not totally convinced.

【在 p***o 的大作中提到】
: Where did you see the "sudden" interests?
: FP was introduced to mainstream languages like C++ since more than
: 10 years ago, not to mention scripting languages like python and
: javascript. It's working but is not the silver bullet.
: If you mean CMU's recent drop of OO courses, they actually plan to
: teach both imperative and functional, with an emphasis on invariants
: and pre/postconditions for verification. BTW, MIT replaced scheme
: with python a few years ago.

avatar
l*q
7
Thanks!
So, when exercising the warrants, can I make the JE like this?
DR Cash 50
DR APIC-warrants 4
CR Common stock parX1
CR Paid-in excess (plug)
avatar
X*r
8
Pure functions have no internal state, which makes it
easier to parallelize.

【在 d**e 的大作中提到】
:
: Actually the question could be rephrased as what good
: does functional bring to parallel processing. I can
: see the links from functional->recursion->parallel,
: but not totally convinced.

avatar
d*e
9

But they still have dependency.

【在 X****r 的大作中提到】
: Pure functions have no internal state, which makes it
: easier to parallelize.

avatar
g*g
10
Actor model is simpler than threading concurrency in an asynchronous
approach. I think that's why language like Scala is gaining
ground.

【在 d**e 的大作中提到】
: What is the rationale behind the sudden interest in
: Functional Languages? It had been around for so long,
: 30 years or so, and there is no theory/technique
: breakthrough happening right now.

avatar
h*i
11
scala 2.9还新加了parallel collection.

【在 g*****g 的大作中提到】
: Actor model is simpler than threading concurrency in an asynchronous
: approach. I think that's why language like Scala is gaining
: ground.

avatar
d*e
12

Actually what do you think about Scala?
Will it be the next JAVA or next C++?
Or, for a freshman in CS, should the first
programming language class offered in Scala
(and forget about JAVA and C++)?

【在 h***i 的大作中提到】
: scala 2.9还新加了parallel collection.
avatar
g*g
13
Scala is too complex a language to be the first programming language.
Java is a fine language for teaching OOP.

【在 d**e 的大作中提到】
:
: Actually what do you think about Scala?
: Will it be the next JAVA or next C++?
: Or, for a freshman in CS, should the first
: programming language class offered in Scala
: (and forget about JAVA and C++)?

avatar
h*i
14
scala对新生来说太复杂了,比c++还繁杂,并不是太看好他。得有个好的编程规范,限
制使用一些东西,否则写的东西很容易别人看不懂。

【在 d**e 的大作中提到】
:
: Actually what do you think about Scala?
: Will it be the next JAVA or next C++?
: Or, for a freshman in CS, should the first
: programming language class offered in Scala
: (and forget about JAVA and C++)?

avatar
w*g
15
就是一群外行看到了一个他们不懂的东西觉得很兴奋。等弄懂了以后就会发现白欢喜了
一场,问题还是没解决。
haskell发明了一个IO monad把现实世界隔离到了程序外面, 然后宣布: 我们在(现实世
界以外)实现了纯函数式编程. 真是迂腐得很.

【在 d**e 的大作中提到】
: What is the rationale behind the sudden interest in
: Functional Languages? It had been around for so long,
: 30 years or so, and there is no theory/technique
: breakthrough happening right now.

avatar
s*o
16
有一腚道理

【在 w***g 的大作中提到】
: 就是一群外行看到了一个他们不懂的东西觉得很兴奋。等弄懂了以后就会发现白欢喜了
: 一场,问题还是没解决。
: haskell发明了一个IO monad把现实世界隔离到了程序外面, 然后宣布: 我们在(现实世
: 界以外)实现了纯函数式编程. 真是迂腐得很.

avatar
L*n
17
scala is too complicated, although the core part is relatively small

【在 d**e 的大作中提到】
:
: Actually what do you think about Scala?
: Will it be the next JAVA or next C++?
: Or, for a freshman in CS, should the first
: programming language class offered in Scala
: (and forget about JAVA and C++)?

avatar
s*g
18
In my learning process of Ocaml, I found it could prevent potential bugs, e.
g., mixed up array indices and array values, and doing it much better than a
compiler like g++.
Meanwhile, it develops faster in some application. Writing a qsort in ocaml
is much faster than doing it in C++.

【在 d**e 的大作中提到】
: What is the rationale behind the sudden interest in
: Functional Languages? It had been around for so long,
: 30 years or so, and there is no theory/technique
: breakthrough happening right now.

avatar
b*n
19
why cloud.
I guess history just repeats itself

【在 d**e 的大作中提到】
: What is the rationale behind the sudden interest in
: Functional Languages? It had been around for so long,
: 30 years or so, and there is no theory/technique
: breakthrough happening right now.

avatar
e*d
20
you don't need to write a qsort in C++.

e.
a
ocaml

【在 s*****g 的大作中提到】
: In my learning process of Ocaml, I found it could prevent potential bugs, e.
: g., mixed up array indices and array values, and doing it much better than a
: compiler like g++.
: Meanwhile, it develops faster in some application. Writing a qsort in ocaml
: is much faster than doing it in C++.

avatar
g*e
21
听微软presentation说是Multi-core。
就象你说的同样适用于dynamic programming language。
很大一个原因是机器能处理得过来了。 而且有成功的例子了。dynamic 有ruby。还有
重新火起来的javascript。如果没说错的话。

【在 d**e 的大作中提到】
: What is the rationale behind the sudden interest in
: Functional Languages? It had been around for so long,
: 30 years or so, and there is no theory/technique
: breakthrough happening right now.

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