Введение в программирование на Julia
Полное руководство по языку программирования Julia — высокопроизводительный, универсальный динамический язык, хорошо подходящий для научных и численных вычислений. Курс охватывает все аспекты от базового синтаксиса и типов данных до продвинутых тем, таких как метапрограммирование, работа с данными в виде таблиц, сетевые взаимодействия и подключение к базам данных.
Обзор курса
📚 Краткое содержание
Полное руководство по языку программирования Julia — высокопроизводительный, универсальный динамический язык, отлично подходящий для научных и численных вычислений. Курс охватывает всё — от базовой синтаксической структуры и типов данных до продвинутых тем, таких как метапрограммирование, работа с таблицами данных, сетевые взаимодействия и подключение к базам данных.
Овладейте высокопроизводительными научными вычислениями со скоростью С и простотой Python.
Автор: Tutorials Point (I) Pvt. Ltd.
Благодарности: Авторские права 2020 г. на материалы принадлежат компании Tutorials Point (I) Pvt. Ltd. Все контенты и графические элементы являются собственностью Tutorials Point.
🎯 Цели обучения
- Определить язык программирования Julia и выделить его ключевые особенности и исторический контекст.
- Отличать язык Julia от других языков технических вычислений с точки зрения производительности и синтаксиса.
- Успешно установить и настроить среду выполнения Julia и интерактивную оболочку (REPL) на системах Linux, Windows и macOS.
- Применять стилистические правила именования переменных в Julia и использовать одно- и многострочные комментарии для документирования кода.
- Создавать массивы различных типов и размерностей с использованием диапазонов, генераторов, пониманий и встроенных функций, таких как
zeros()иones(). - Выполнять сложные операции индексирования и модификации массивов с применением логики истинности, ключевого слова
endи функций с восклицательным знаком (например,push!,splice!). - Создавать и управлять кортежами и именованными кортежами, включая их использование как аргументов функций с ключевыми словами.
- Обнаруживать и управлять поведением переполнения целых чисел и ошибками деления с помощью стандартных и произвольной точности типов.
- Анализировать представление чисел с плавающей запятой, включая знаковые нули, специальные значения (NaN, Inf) и машинную эпсилон.
- Выполнять и комбинировать арифметические, побитовые и обновляющие операторы для манипуляций с типами данных.
Уроки 共 10 课时 · 预计 30.0h
Уроки
Lesson
This lesson introduces the Julia programming language and its ability to solve the "two-language problem" by providing high-level, readable syntax that executes with the speed of low-level languages. Students will learn how to set up their development environment and understand how Julia’s LLVM-based compilation eliminates the need to rewrite prototypes for production.
This lesson introduces the fundamentals of Julia programming, focusing on variable naming conventions, type inference, and the use of snake_case. Students will also learn how to manage the Julia environment, execute scripts using the include() function, and implement proper documentation standards through single and multi-line comments.
This lesson introduces tuples in Julia as fixed-length, immutable collections that ensure data integrity by preventing accidental modifications. Students will learn how to define and index tuples, utilize tuple unpacking, and leverage their performance advantages for storing fixed-size data.
This lesson introduces the landscape of operators in Julia, covering arithmetic, bitwise, and logical operations, as well as the use of compound updating assignments. Students will learn how to apply these operators effectively while managing type-specific behaviors and operator precedence to solve computational problems.
This lesson explores the distinction between Julia’s 32-bit Char primitives and immutable UTF-8 Strings, emphasizing their unique type hierarchies and memory handling. Students will learn to perform character arithmetic, implement functional transformations, and optimize text processing through efficient byte-based indexing and SubString views.
This lesson explores flow control in Julia, focusing on implementing complex conditional logic, iterative loops, and key-value data structures. Students will also learn to leverage Julia's multiple dispatch system and the Dates module to manage and manipulate temporal data types efficiently.
This lesson explores the Julia Dates module, focusing on the hierarchical management of temporal data through Date, Time, and DateTime types. Students will learn to perform precise calendar arithmetic, utilize stream-based I/O, and apply metaprogramming techniques to build flexible, reusable code.
This lesson introduces the Julia visualization ecosystem, focusing on the Plots.jl metapackage that provides a unified syntax for various rendering backends. Students will learn how to switch between backends like GR and UnicodePlots to optimize workflows for both high-resolution graphical output and terminal-based data analysis.
This lesson explores the four pillars of scientific computing in Julia: high-performance data handling, statistical rigor, modular architecture, and versatile graphics. Students will learn how to integrate diverse data streams, apply weighted statistical metrics, and utilize various libraries for both low-level and declarative data visualization.
This lesson explores Julia’s networking and database ecosystem, focusing on using the Multiple Dispatch paradigm to interface with high-performance tools like Gaston and PGFPlots for data visualization and reporting. It also introduces practical byte-stream communication, contrasting the reliability of TCP and Named Pipes with the speed-focused nature of UDP.