Rabu, 30 September 2015

GAMBAR PLOT 2 DIMENSI


Fungsi plot digunakan untuk menggambar grafik 2D dengan skala linear pada kedua sumbunya.
Contoh:
>> x=-10:10;
>> y=x.^2;
>> plot(x,y)
Hasilnya akan tampak sebagai berikut:

Plot 2 dimensi
daftar pustaka :

Konversi Satuan

Konversi Satuan

function konversi (x,unit)
% x adalah yang akan dikonversi
% unit adalah satuan
if nargin ~ = 2
    error('perlu dua argumen , misalnya 5,ft')
end
if ~ ischar(unit)
    error ('argumen kedua harus karakter')
end
switch unit
    case ('inch','in')
        y = x* 2,54;
    case ('feet','ft');
        y = x*2,54*12);
    case ('milimeter','mm')
        y = x/10;
    case ('centimeter','cm')
        y = x;
    otherwise
        disp(['unit tidak dikenal=',unit])
end
disp ('hasil dalam cm =')
y
return

Kamis, 17 September 2015

membuat program(fisika komputasi)

kesalahan pemotongan (round off)

% rndoff - demo program untuk round-off error
clear; help rndoff;
h=1 % intial value for h
for j=1:21
    temp = (10 + h )-10; % bila tidak ada round off temp=h
    hplot(j)= h;
    eplot (j)= abs (temp-h)/h;
    h=h/10;
end
loglog (hplot, eplot,'*');
xlabel('h');
ylabel('fractional error');
title('round off error')

hasilnya