~MAPLE~ Maple is a symbolic and numeric computing environment, and is also a multi-paradigm programming language. Developed by Maplesoft, Maple also covers other aspects of technical computing, including visualization, data analysis, matrix computation, and connectivity. A toolbox, MapleSim, adds functionality for multidomain physical modeling and code generation. Examples of Maple code myfac := proc(n::nonnegint) local out, i; out := 1; for i from 2 to n do out := out *...
In
Learning C++
C++ for basic Next after the python programming language, we learnt about the other popular programming language which is C++. The C++ is more hard and require more understanding about the syntax compared to the python. Although C++ is more prone to be used as software builder, we also can use C++ for scientific calculations and input data. 1. Important code. In any...
Carpentry lesson( programming with python) To analyse scientific data, we can use python as we import numpy library. The numpy act as computational calculation for array data. In carpentry lesson, we will learn about how to analyse patient data and make a graph from the data. First, we need an data example. In carpentry lesson, we can download the example from the setup....
1) Hello World! Python is a very simple language, and has a very straightforward syntax. It encourages programmers to program without boilerplate (prepared) code. The simplest directive in Python is the "print" directive - it simply prints out a line (and also includes a newline, unlike in C). Indentation Python uses indentation for blocks, instead of curly braces. Both tabs and spaces are...
How to Install Python? How to Install Python on Windows or Mac? Go to www.python.org Choose download The latest version of python is 3.6.1 You can download any version of python that is suitable to your computer. Click download page Choose the file that is suitable for your computer. For Microsoft, choose Windows Operating System. For Apple, choose Mac Operating System. Follow the instruction...
Plot in Python After the installation of python, we can use the app to create the graph that can be used for scientific data representation. To make plot, we need special library called matplotlib.pyplot that will translate the code into 2d graph. Below is step to step tutorial how to launch the jupyter notebook and how to use the matplotlib library. Activate Jupyter...