Julia Basic Commands
Julia Basic Commands
(use at your own risk)
What is Julia?
Basic commands
Numbers
atan2(y,x) # return the angle (rad) between the x-axis and the point (x,y)
1+2im
(1+2im)*(2-3im)
e^(im*pi/4)
# Note:
Strings
@sprintf("%4d %10s # combine the integer number num_1, the string st, and the real number
%7.3f",num_1,st,num_2) num_2, then output as a string
Ifstatement
if (k<50)||((k<1000)&&(mod(k,10)==0))||(mod(k,100)==0)
println(k);
end
if x < y
println("x is less than y");
elseif x > y
println("x is greater than y");
else
println("x is equal to y");
end
x='D';
if x in ['A':'H']
println("x is between 'A' and 'H');
else
println("x is not between 'A' and 'H'");
end
x="D";
if x in ["A","bcd","H"]
println("x is in the set ["A","bcd","H"]");
else
println("x is not in the set ["A","bcd","H"]");
end
Forstatement
for k=1:2:10
println("k = ",k);
sleep(1); # pause for 1 second
end
Whilestatement
Match package
# one-time setup
Pkg.add("Match");
# usage
using Match;
@match item begin
pattern1 => {statement_1; statement_2;}
partern2, if (cond) end => result2;
partern3 || partern4 => result3;
_=> default_result;
end
Function declaration
function polar(x,y)
# return polar coordinates
r = hypot(x,y); # r= sqrt(x^2+y^2);
theta = atan2(y,x);
return r, theta;
end
Variable scope
a=8; b=[1,3];
if (a>1)
a=11; b=[2,10,5];
end
for i=1:3 a+=2;end
println("Before the function call: a=",a," b=",b');
function check()
a=5; b=[3,2,1];
println("Inside the function: a=",a," b=",b');
end
Read/write Text files
Read/write Matlab files (HDF5 package) [more]
Data Type: Dictionary [more]
dict["d"] = 5
Arrays and Matrices [more]
A=[1 2 3; 4 5 6; 7 8 9];
A=[5 3; 3 4];
Simple Statistics
x=rand(100);
mean(x);
mean(x[1:50]);
median(x);
std(x);
var(x);
for example,
quantile(x,0.25); # first quartile
quantile(x,0.5); # second quartile = median
quantile(x,0.75); # third quartile
Plotting with Gaston (OS X, Linux)
Pkg.add("Gaston");
using Gaston;
set_terminal("x11");
# or set_terminal("wxt");
Gaston: 2D plots
x = [0:0.1:10];
## or x = linspace(0,10,101);
y1 = sin(x); y2 = cos(x);
figure(k);
#or Gaston.figure(k); #k=1,2,...
plot(x,y1, "plotstyle", "points", "pointsize", 1.5, "marker", "etrianup", "color", "blue", "legend",
"sin(x)", "title", "sin(x) vs. cos(x)", x, y2, "plotstyle", "linespoints, "pointsize", 1.5, "marker",
"fsquare", "color", "#ff0000", "legend", "cos(x)");
Gaston: 3D plots
f=(x,y)->max(abs(x),-abs(y)+1);
surf(-3:0.1:3,-3:0.1:3,f,"plotstyle","linespoints","color","blue","legend","f(x,y)");
Gaston: plot parameters
Gaston: midlevel plotting
x=[0:0.1:10];
## or x = linspace(0,10,101);
y1 = sin(x); y2 = cos(x);
plot(x,y1,"legend","sin(x)");
c2=Gaston.CurveConf();
c2.legend="cos(x)";
c2.plotstyle="linespoints";
c2.color="blue";
c2.marker="ecircle";
c2.linewidth=1.5;
c2.pointsize=1;
# or c2 = Gaston.CurveConf("cos(x)","linespoints","blue","ecircle",1.5,1);
Gaston.addcoords(x,y2,c2);
Gaston.llplot();
Load Gaston automatically when starting Julia
Run Julia from Mac OS terminal
alias julia="/Applications/Julia-0.3.8.app/Contents/Resources/julia/bin/julia"
export PATH
Plotting with Winston (Windows) [more]
# Intallation
Pkg.add("Winston");
using Winston;
plot(x,y)
# add to current plot
oplot(x2,y2)
figure("An example");
semilogy([1:100]);
title("graph of y=x");
legend("y=x");
# Multiple plots
z=[1:100];
figure(); # create an empty plot and return an ID
semilogy(z);
# Example 1
# Example 2
n = 21
x = linspace(0, 100, n)
yA = 40 .+ 10randn(n)
yB = x .+ 5randn(n)
b = Points(x, yB)
setattr(b, label="b points")
style(b, kind="filled circle")
add(p, s, a, b, l)
# Example 3
# Example 4
# Example 5
Load and view images [more]
# Installation
Pkg.add("Images")
Pkg.add("TestImages")
Pkg.add("ImageView")
~/.julia/<version>/TestImages/Images/
# Usage
view(g)
A = imread("<grayscale_image>")
imwrite(A,"test_image.jpg")
Accessing image information using Color package [more]
# Color structure
Mathematical programming [more]
Pkg.add("Clp"); # Installation
Pkg.add("JuMP");
using JuMP;
m = Model();
@defVar(m, 0 <= x <= 2);
@defVar(m, 0 <= y <= 30);
@setObjective(m, Max, 5x + 3y);
@addConstraint(m, 1x + 5y <= 3.0);
print(m);
status = solve(m);
println("Objective value = ", getObjectiveValue(m));
println("x = ", getValue(x));
println("y = ", getValue(y));