Networking and Streams Basic Stream I/O Text I/O IO Output Contextual Properties Working with Files A simple TCP example Resolving IP Addresses Asynchronous I/O Multicast Re...
Calling C and Fortran Code Creating C-Compatible Julia Function Pointers Mapping C Types to Julia Automatic Type Conversion Type Correspondences Bits Types Struct Type Correspo...
Linear Algebra Special matrices Elementary operations Matrix factorizations The uniform scaling operator Matrix factorizations Standard functions Low-level matrix operations ...
gdb 调试提示 显示 Julia 变量 有用的用于检查的 Julia 变量 Useful Julia functions for Inspecting those variables Inserting breakpoints for inspection from gdb Inserting breakpoints upon certain co...
变量 合法的变量名 命名规范 变量 Julia 语言中,变量是与某个值相关联(或绑定)的名字。你可以用它来保存一个值(例如某些计算得到的结果),供之后的代码使用。例如: # Assign the value 10 to the variable x julia > x = 10 10 # Doing math with ...