Beginning Julia Programming for Engineers and Scientists — Sandeep Nagar Beginning Julia Programming for Engineers and Scientists
Total Page:16
File Type:pdf, Size:1020Kb
فقط کتاب مرجع معتبر دانلود کتاب های تخصصی Faghatketab.ir Beginning Julia Programming For Engineers and Scientists — Sandeep Nagar Beginning Julia Programming For Engineers and Scientists Sandeep Nagar Beginning Julia Programming: For Engineers and Scientists Sandeep Nagar New York, USA ISBN-13 (pbk): 978-1-4842-3170-8 ISBN-13 (electronic): 978-1-4842-3171-5 https://doi.org/10.1007/978-1-4842-3171-5 Library of Congress Control Number: 2017959880 Copyright © 2017 by Sandeep Nagar This work is subject to copyright. All rights are reserved by the Publisher, whether the whole or part of the material is concerned, specifically the rights of translation, reprinting, reuse of illustrations, recitation, broadcasting, reproduction on microfilms or in any other physical way, and transmission or information storage and retrieval, electronic adaptation, computer software, or by similar or dissimilar methodology now known or hereafter developed. Trademarked names, logos, and images may appear in this book. Rather than use a trademark symbol with every occurrence of a trademarked name, logo, or image we use the names, logos, and images only in an editorial fashion and to the benefit of the trademark owner, with no intention of infringement of the trademark. The use in this publication of trade names, trademarks, service marks, and similar terms, even if they are not identified as such, is not to be taken as an expression of opinion as to whether or not they are subject to proprietary rights. While the advice and information in this book are believed to be true and accurate at the date of publication, neither the authors nor the editors nor the publisher can accept any legal responsibility for any errors or omissions that may be made. The publisher makes no warranty, express or implied, with respect to the material contained herein. Cover image by Freepik (www.freepik.com) Managing Director: Welmoed Spahr Editorial Director: Todd Green Acquisitions Editor: Steve Anglin Development Editor: Matthew Moodie Technical Reviewer: Massimo Nardone Coordinating Editor: Mark Powers Copy Editor: Ann Dickson Distributed to the book trade worldwide by Springer Science+Business Media New York, 233 Spring Street, 6th Floor, New York, NY 10013. Phone 1-800-SPRINGER, fax (201) 348-4505, e-mail [email protected], or visit www.springeronline.com. Apress Media, LLC is a California LLC and the sole member (owner) is Springer Science + Business Media Finance Inc (SSBM Finance Inc). SSBM Finance Inc is a Delaware corporation. For information on translations, please e-mail [email protected], or visit http://www.apress.com/ rights-permissions. Apress titles may be purchased in bulk for academic, corporate, or promotional use. eBook versions and licenses are also available for most titles. For more information, reference our Print and eBook Bulk Sales web page at http://www.apress.com/bulk-sales. Any source code or other supplementary material referenced by the author in this book is available to readers on GitHub via the book's product page, located at www.apress.com/9781484231708. For more detailed information, please visit http://www.apress.com/source-code. Printed on acid-free paper Dedicated to my wife, Rashmi, and my daughter, Aliya Table of Contents About the Author ���������������������������������������������������������������������������������������������������xvii About the Technical Reviewer ��������������������������������������������������������������������������������xix Acknowledgments ��������������������������������������������������������������������������������������������������xxi Chapter 1: Introduction�������������������������������������������������������������������������������������������� 1 1.1 Welcome to the Julian World ��������������������������������������������������������������������������������������������������� 1 1.2 JIT Compiler ���������������������������������������������������������������������������������������������������������������������������� 3 1.3 Brief History ���������������������������������������������������������������������������������������������������������������������������� 4 1.4 Installation ������������������������������������������������������������������������������������������������������������������������������ 5 1.4.1 JuliaBox �������������������������������������������������������������������������������������������������������������������������� 5 1.4.2 MacOS ���������������������������������������������������������������������������������������������������������������������������� 6 1.4.3 Windows OS �������������������������������������������������������������������������������������������������������������������� 7 1.4.4 Linux OS ������������������������������������������������������������������������������������������������������������������������� 7 1.5 Package Installation ���������������������������������������������������������������������������������������������������������������� 8 1.5.1 Initialization of Package Manager ���������������������������������������������������������������������������������� 9 1.5.2 Updating Package Repository ���������������������������������������������������������������������������������������� 9 1.5.3 Installing a New Package ��������������������������������������������������������������������������������������������� 10 1.5.4 Removing a Package ���������������������������������������������������������������������������������������������������� 10 1.5.5 Status of Installed Packages ���������������������������������������������������������������������������������������� 11 1.5.6 Off-line Installation of Packages [18] ��������������������������������������������������������������������������� 12 1.6 Using Code in This Book ������������������������������������������������������������������������������������������������������� 12 1.7 Summary ������������������������������������������������������������������������������������������������������������������������������ 13 1.8 Bibliography �������������������������������������������������������������������������������������������������������������������������� 13 v TABLE OF CONtENtS Chapter 2: Object-Oriented Programming �������������������������������������������������������������� 15 2.1 Introduction ��������������������������������������������������������������������������������������������������������������������������� 15 2.2 Procedural Programming vs. OOP ����������������������������������������������������������������������������������������� 15 2.3 Idea of OOP ��������������������������������������������������������������������������������������������������������������������������� 15 2.4 Object ������������������������������������������������������������������������������������������������������������������������������������ 16 2.5 Types of Object ���������������������������������������������������������������������������������������������������������������������� 16 2.6 Object Reference ������������������������������������������������������������������������������������������������������������������ 17 2.6.1 Multiple References for the Same Object ��������������������������������������������������������������������� 19 2.7 Variables ������������������������������������������������������������������������������������������������������������������������������� 21 2.7.1 Naming a Variable �������������������������������������������������������������������������������������������������������� 22 2.7.2 Naming Style Convention [4] ���������������������������������������������������������������������������������������� 22 2.8 Summary ������������������������������������������������������������������������������������������������������������������������������ 23 2.9 Bibliography �������������������������������������������������������������������������������������������������������������������������� 23 Chapter 3: Basic Math with Julia ��������������������������������������������������������������������������� 25 3.1 Introduction ��������������������������������������������������������������������������������������������������������������������������� 25 3.2 REPL �������������������������������������������������������������������������������������������������������������������������������������� 26 3.2.1 Hello World! ������������������������������������������������������������������������������������������������������������������ 26 3.2.2 I/O at REPL �������������������������������������������������������������������������������������������������������������������� 27 3.2.3 Tab Completion ������������������������������������������������������������������������������������������������������������� 28 3.2.4 Seeking Help from Julia ����������������������������������������������������������������������������������������������� 29 3.2.5 Shell Mode �������������������������������������������������������������������������������������������������������������������� 30 3.2.6 Search Mode ���������������������������������������������������������������������������������������������������������������� 30 3.2.7 Key Bindings ����������������������������������������������������������������������������������������������������������������� 30 3.2.8 Version Information ������������������������������������������������������������������������������������������������������ 31 3.3 Some Experiments with Numbers ���������������������������������������������������������������������������������������� 31 3.3.1 Number Systems ����������������������������������������������������������������������������������������������������������