Kamis, 03 April 2014

TP 3 KAL2 : Membuat Grafik 2D Menggunakan Aplikasi MATLAB



Tugas Pendahuluan 3.
PRAKTIKUM
KALKULUS II

OLEH
LUH PUTU SUCI VANDASARI
F1A113054
KELAS A

JURUSAN MATEMATIKA
PROGRAM STUDI MATEMATIKA
FAKULTAS MATEMATIKA DAN ILMU PENGETAHUAN ALAM
UNIVERSITAS HALU OLEO
2014
 


SOAL.
1.      Cari cara memplot :
a.       Eksponen x

b.      Cos x
2.      Cari cara memplot 4 grafik dalam satu figure.

PENYELESAIAN.
1.      Cara memplot di MATLAB yaitu sebagai berikut.
Ø  Nyalakan computer.
Ø  Klik START, klik All Program, pilih MATLAB. Jika di desktop terdapat shortcut MATLAB, maka klik shortcut MATLAB 2 kali (double click).
Ø  Setelah aplikasi MATLAB terbuka, ketik edit di commad window, maka m-file akan ditampilkan.
Ø  Untuk memplot eksponen x dan cos x di m-file dapat dilakukan sebagai berikut.

a.       Eksponen x
Ketik program berikut ini.
clear all;
clc;
syms x;
y= exp(x);
ezplot(y);
xlabel('Sumbu x');
ylabel('Eksponen Dari x');
title('Grafik Eksponen x','FontSize',14);
grid on

Setelah itu Run and Save program . Berikut tampilan Grafik Eksponen x.



b.       Cos x
Contoh  Cos x dengan menggunakan fungsi plot.
Ketik program berikut ini.
clear all;
clc;
s=[0:360];
x=s*pi/180;
y=cos(x);
plot(s,y,'r*');
xlabel('Nilai Sudut 0 sampai 2\pi');
ylabel('cosinus dari x');
title('Grafik Cosinus','FontSize',14);
grid on

Setelah itu Run and Save program . Berikut tampilan Grafik  cos x.



Contoh Cos x dengan menggunakan fungsi ezplot.
Ketik program berikut ini.
clear all;
clc;
syms x;
y= cos(x);
ezplot(y);
xlabel('Sumbu x');
ylabel('Sumbu y');
title('Grafik Cosinus','FontSize',14);
grid on

Setelah itu Run and Save program . Berikut tampilan Grafik  cos x.



1.      Cara memplot 4 grafik dalam satu figure di MATLAB yaitu sebagai berikut.
Ø  Nyalakan computer.
Ø  Klik START, klik All Program, pilih MATLAB. Jika di desktop terdapat shortcut MATLAB, maka klik shortcut MATLAB 2 kali (double click).
Ø  Setelah aplikasi MATLAB terbuka, ketik edit di commad window, maka m-file akan ditampilkan.
Ø  Untuk memplot 4 grafik dalam 1 figure digunakan fungsi subplot(m,n,p) yang akan membagi figure window ke dalam matrik subplot berukuran mxn dan memilih subplot ke-p untuk plot saat ini.
Contoh.
Membuat grafik dari fungsi berikut dalam satu figure :
Ketik program berikut ini.
clear all;
clc;
syms x;
S=(x.^2)+(3);
U=(x.^3)+(3*x.^2)+(3*x)+(1);
C=tan(x);
I=sin(x)
subplot(2,2,1);
ezplot(S)
xlabel('Sumbu x');
ylabel('Sumbu y');
title('Grafik Fungsi x^2+3','FontSize',14);
grid on
subplot(2,2,2);
ezplot(U)
xlabel('Sumbu x');
ylabel('Sumbu y');
title('Grafik Fungsi x^3+3x^2+3x+1','FontSize',14);
grid on
subplot(2,2,3);
ezplot(C)
xlabel('Sumbu x');
ylabel('Sumbu y');
title('Grafik Fungsi Tangen','FontSize',14);
grid on
subplot(2,2,4);
ezplot(I)
xlabel('Sumbu x');
ylabel('Sumbu y');
title('Grafik Fungsi Sinus','FontSize',14);
grid on

Setelah itu Run and Save program . Berikut tampilan 4 grafik dalam satu figure.



 

Tidak ada komentar:

Posting Komentar