Hacker News
new
|
past
|
comments
|
ask
|
show
|
jobs
|
submit
login
Beliavsky
on Jan 23, 2014
|
parent
|
context
|
favorite
| on:
Why I'm Betting On Julia
Btw, Fortran arrays start at 1 by default, but the lower bound can be specified by the user, for example
real :: x(-10:10)
is a real vector of 21 elements from -10 to 10.
wirrbel
on Jan 23, 2014
[–]
interesting. I have so far only read some fortran code, never really dived into it in more detail.
Guidelines
|
FAQ
|
Lists
|
API
|
Security
|
Legal
|
Apply to YC
|
Contact
Search:
real :: x(-10:10)
is a real vector of 21 elements from -10 to 10.