sayang = ['clc;',... 'f = figure;', ... 'x = linspace(-pi,pi,100 );', ... 'y = sin(x);',... 'maju = 1;',... 'm = 1;',... 'n = 1;',... 'while ishandle(f)',... 'for i=1:length(x)',... 'p = plot(x(1:i),y(1:i), ''linewidth'', 3);'... 'hold on;'... 'p1 = plot(x(i), y(i),''r.'' , ''markersize'', 30);'... 'axis([-pi pi -1 1]);'... 'pause(0.01);',... 'if ishandle(p), delete(p); end,'... 'if ishandle(p1),delete(p1); end,'... 'end,',... 'for i=length(x):-1:1',... 'p = plot(x(i:length(x)),y((i:length(y))), ''linewidth'', 3);',... 'p1 = plot(x(i), y(i),''r.'' , ''markersize'', 30);'... 'axis([-pi pi -1 1]);'... 'pause(0.01);',... 'if ishandle(p), delete(p); end,',... 'if ishandle(p1),delete(p1); end,'... 'end,',... 'end']; eval(sayang);
Sesungguhnya shalat itu mencegah dari (perbuatan-perbuatan) keji dan mungkar
Q.S. Al-'Ankabut Ayat 45
Thursday, December 19, 2013
Maksud perintah eval di MATLAB
Berikut ini saya berikan contoh penggunaan perintah eval di MATLAB. Silakan dites di komputer anda... kebetulan saya g bisa buat video demonya lantaran koneksi lambat :D.
Wednesday, December 18, 2013
Kenapa harus ada perintah comet di MATLAB
Saya sampai hari ini kurang paham, kenapa sampai ada perintah comet di MATLAB. Coba tes perintah berikut di komputer anda, apa yang terjadi. Soalnya koneksi lagi lambat jadi g bisa buat videonya.
function comet clc; f = figure; m = @sin ; n = @cos ; x = linspace(-pi,pi, 300); a = 'm'; tescomet(30); function tescomet(n) state = 1; for i=1:n if state a = strcat(a,'(n'); state = 0; else a = strcat(a,'(m'); state = 1; end end a = strcat(a, '(x)'); for k= 1:n a = strcat(a, ')'); end end y = eval(a); m = 1; plot(x, y); hold on; maju = 1; while ishandle(f) if m > length(x), maju = 0; m = length(x); elseif m < 1 maju = 1 ; m = 1; end p = plot(x(m), y(m), 'r.', 'markersize', 30); pause(0.005); if ishandle(p), delete(p); end if maju, m = m+1; else m = m - 1; end end end
Batas memori stack pada python dan matlab
Saya penasaran, bagaimana jika kita memplot sebuah fungsi sinusoidal hingga tak berhingga, apa yang terjadi. Maksudnya adalah bagaimana jika kita memplot \( \sin(\sin( \sin( \cdots x) \cdots )) \). Ternyata untuk software yang berbeda hasilnya beda pula. Untuk MATLAB kapasitasnya di batasi sampai 32 kurung bersarang. Sementara untuk python untuk 90 kurung bersarang.
Berikut contohnya untuk MATLAB
dengan sourcenya:
dengan source-nya
dengan sourcenya:
function test_sin_sin clc; x = linspace(0, 2*pi ); cut(2); cut(15); cut(30); function cut(a) y = 'sin('; for i=1:a, y = strcat(y,'sin('); end y = strcat(y, 'x)'); for i=1:a, y = strcat(y, ')'); end y = eval(y); plot(x, y); hold on ; end endAdapun untuk python adalah
dengan source-nya
# -*- coding: utf-8 -*- """ Created on Thu Dec 19 15:22:44 2013 @author: fajar """ x = linspace(-pi,pi, 1000); def test(a): aa = 'sin(' for i in range(a): aa += 'sin(' aa += 'x)' for i in range(a): aa+= ')' yy = eval(aa); plot(x, yy); test(90)
Wednesday, December 11, 2013
Tuesday, December 3, 2013
Convert List Generic ke list tipe tertentu di java
Berikut ini adalah contoh bagaimana mengconvert list generic ke list tipe tertentu di java
Monday, November 18, 2013
Belajar optimisasi di MATLAB
Sebenarnya untuk kreatif g perlu mahal, asalkan kita banyak baca. Berikut ini saya akan membahas sebuah contoh dasar pada buku kalkulus James stewart edisi 5 pada bab 4.7 yakni soal latihan nomor 57.
Yang hasilnya saya gambar ulang menjadi
Pada gambar di atas, terlihat jelas bahwa sudut \(\theta\) dapat dinyatakan sebagai fungsi \(x\) yakni
$$
\begin{equation}
\theta = 180^o -tan^{-1} \left ( \frac{2}{x} \right ) - \tan^{-1} \left( \frac{5}{3-x} \right )
\end{equation}
$$
yang nilai maksimumnya dapat dinyatakan sebagai
$$
\begin{eqnarray}
\frac{d \theta}{dx } &= & 0 + \frac{2}{x^2} \frac{1}{1 + \frac{4}{x^2} } - \frac{5}{(3 - x)^2} \cdot \frac{1}{1 + \frac{25}{(3 - x)^2}} \\
& = & \frac{2}{x^2 + 4} - \frac{5}{(3 - x)^2 + 25} = 0
\end{eqnarray}
$$
atau
\begin{eqnarray}
3 x^2 + 12 x - 12 = 0
\end{eqnarray}
yang akarnya adalah \(x = - 6 \pm 6\sqrt{2} \). Di mana yang memenuhi adalah \(x = -6 + 6 \sqrt{2} = 6 (\sqrt{2} - 1) \approx 2.4\)
Untuk mengilustrasikan jawaban tersebut, saya sudah membuat sebuah program sederhana dalam bahasa MATLAB yang sourcenya pembaca bisa coba di rumah, ditulis dengan menggunakan MATLAB 2009. Adapun sourcenya adalah:
% jawaban soal nomor 57 BAB 4.7 dari buku James Stewart kalkulus % edisi 5 % author: Mohammad Fajar function soal57 clc; f = figure('menubar', 'none', 'resize', 'off', ... 'position', [200, 100, 800, 450]); ax1 = axes('units', 'pix', 'position', [50 50 340 270]... , 'xlim', [0 2*pi], 'ylim', [-1.5, 1.5]); ax2 = axes('units', 'pix', 'position', [430 50 340 270]... , 'xlim', [0 2*pi], 'ylim', [-1.5, 1.5]); slider = uicontrol('style', 'slider', 'position', [50 380 90 20]); text_ = uicontrol('style', 'text', 'position', [150 380 40 20 ]); set(slider, 'value', 0.1); set(slider, 'sliderstep', [0.05 0.05]); ss = 0:0.01:3; theta = 180 - atand(2./ss) - atand(5./(3- ss)); maksimum = max(theta); % jawabannya while ishandle(f) xx = get(slider , 'value'); xx = xx * 3; set(text_, 'string', num2str(xx)); trigx = [0 0;5 2;0 0]; trigy = [0 3-xx;0 3;3-xx 3]; z = [1 1;1 1;1 1]; p = patch(trigx, trigy, z, 'parent', ax2); axis([-1 ,6, -1, 4]); thetax = 180 - atand(2./xx) - atand(5./(3 - xx)); p2 = plot(ss, theta, 'parent', ax1); xlabel(ax1, 'x'); ylabel(ax1, '\theta'); hold on; p3 = line([xx xx], [0 thetax], 'linewidth', 4, 'parent', ax1); tt = text(xx+.1,thetax-3,['\theta = ', num2str(thetax)],'parent', ax1 ... , 'fontsize', 9); tt2 = text(0.8,3-xx,['\leftarrow \theta = ', num2str(thetax), '^o'],'parent', ax2 ... , 'fontsize', 12); % ini hanya untuk mengakali karena step slider dan step linspace pada % MATLAB tidak sama :) if floor(thetax) == floor(maksimum) set(p3, 'color', 'r'); set(p, 'facecolor', 'y'); end drawnow; if ishandle(p), delete(p);end if ishandle(p2), delete(p2);end if ishandle(p3), delete(p3);end if ishandle(tt), delete(tt);end if ishandle(tt2), delete(tt2);end endadapaun hasil runningnya adalah:
Wednesday, November 13, 2013
Memahami garis singgung dengan MATLAB
Berikut ini saya berikan contoh program untuk memahami makna filosofis dari garis singgung.
function garis_singgung % author: mohammad fajar :) clc; f = figure('menubar', 'none', 'resize', 'off'); axes('units', 'pix', 'position', [50 50 450 300]... , 'xlim', [0 2*pi], 'ylim', [-1.5, 1.5]); slider = uicontrol('style', 'slider', 'position', [50 380 90 20]); text = uicontrol('style', 'text', 'position', [150 380 40 20 ]); t = 0:.1:2*pi; y1 = sin(t); y2 = cos(t); plot(t, y1 , t, y2); hold on ; line([0 2*pi], [0 0]); hold on ; while ishandle(f) value = get(slider , 'value'); value = value * 2 * pi; set(text, 'string', num2str(value)); hasil = cos(value); yy = (t - value ).* hasil + sin(value) ; p = plot(t, yy, 'r' , 'linewidth', 2); p1 = line([value value ] , [0 cos(value)], 'linewidth', 4); p2 = plot(value, sin(value),'r.' , 'markersize', 23); % method drawnow tidak mengenali settingan di atas axis([0 , 2*pi, -1.5, 1.5 ]); drawnow; if ishandle(p), delete(p); end if ishandle(p1), delete(p1); end if ishandle(p2), delete(p2); end end endAdapun hasilnya adalah pada gambar berikut:
Friday, November 1, 2013
Belajar monte carlo dengan MATLAB untuk menghitung luas kurva
Berikut ini contoh program yang saya buat pake MATLAB untuk menghitung luas kurva "apa saja" dengan menggunakan metode Monte Carlo.
Yang source codenya
function test_monte_carlo clear all ; clc; f = figure('menubar', 'none', 'resize', 'off' ); ax = axes('units', 'pix', 'position', [40 50 340 340]); uicontrol('units', 'pix', 'position', [400 360 60 25],... 'style', 'text','string','f(x) :' , 'fontsize', 12, 'horizontalAlignment', 'left', ... 'fontsize', 12, 'fontweight', 'bold', 'backgroundcolor', get(f, 'color')); % input fungsi inputFungsi = uicontrol('units', 'pix', 'position', [450 360 100 25],... 'style', 'edit', 'fontsize', 12); uicontrol('units', 'pix', 'position', [400 330 60 25],... 'style', 'text','string','N :' , 'fontsize', 12, 'horizontalAlignment', 'left', ... 'fontsize', 12, 'fontweight', 'bold', 'backgroundcolor', get(f, 'color')); inputN = uicontrol('units', 'pix', 'position', [450 330 100 25],... 'style', 'edit', 'fontsize', 12, 'fontweight', 'bold'); % keterangan hasil ket_hasil = uicontrol('units', 'pix', 'position', [400 280 100 30],... 'style', 'text', 'fontsize', 12, 'fontweight', 'bold', ... 'string', '0' , 'backgroundcolor', get(f, 'color')); % hitung button uicontrol('units', 'pix', 'position', [400 250 100 30],... 'style', 'pushbutton', 'fontsize', 12, 'fontweight', 'bold', ... 'string', 'HITUNG', 'Callback', @fungsi_hitung); % reset button uicontrol('units', 'pix', 'position', [400 210 100 30],... 'style', 'pushbutton', 'fontsize', 12, 'fontweight', 'bold', ... 'string', 'RESET', 'Callback', @reset_fungsi); function fungsi_hitung(varargin) N = get(inputN , 'string'); N = str2double(N); x = 0:.01:2*pi; yy = get(inputFungsi, 'string'); y = eval(yy, x); plot(x,y, 'parent', ax, 'linewidth', 3); hold on; miny = min(y); maxy = max(y); deltax = linspace( 0 , 2*pi ,10000); deltay = linspace( miny,maxy, 10000); a = 0; for i=1:N, m = randi(length(deltax),1); n = randi(length(deltay),1); x = deltax(m); y = deltay(n); if y >= 0 if y <= eval(yy, x) a = a + 1; plot(x,y, 'g*', 'parent', ax); hold on ; else plot(x,y, 'r*', 'parent', ax); hold on ; end else if y >= eval(yy, x) a = a + 1; plot(x,y, 'g*', 'parent', ax); hold on ; else plot(x,y, 'r*', 'parent', ax); hold on ; end end end axis tight; luas = (a/N) * ( (maxy- miny) * (2*pi - 0)); set(ket_hasil, 'string', num2str(luas)); end function reset_fungsi(varargin) cla reset; set(ket_hasil, 'string', '0'); end end
Thursday, October 31, 2013
Menggunakan slider di MATLAB
Contoh penggunaan slider di MATLAB
Adapun source codenya:
function test_slider figure('menubar', 'none', 'position', [300 300 200 100]); slider = uicontrol('style', 'slider', 'position', [10 10, 100 30]... , 'callback', @call); ket = uicontrol('style', 'text', 'position', [10 55, 100 40], ... 'fontsize', 14, 'fontweight', 'bold' ); set(ket, 'string', get(slider, 'value')); function call(varargin) set(ket, 'string', get(slider, 'value')); end end
Menggunakan input field GUI di MATLAB
Berikut adalah contoh penggunaan input field di MATLAB.
adapun sourcenya adalah:
adapun sourcenya adalah:
function tes_button clc; figure('menubar', 'none', 'position', [300 300 200 100]); uicontrol('style', 'pushbutton','position', [10 10, 100 50], 'string', 'TEST'... , 'Callback', @call ); edit = uicontrol('style', 'edit','position', [10 65, 60 30], 'string', '0'.... ,'fontsize', 12, 'fontweight','bold'); tampil = uicontrol('style', 'text', 'position', [80 65 60 25], 'string' , '0' ... ,'fontsize', 12, 'fontweight','bold'); function call(varargin) a = get(edit, 'string'); if ~isnan(str2double(a)) set(tampil, 'string', a); else set(tampil, 'string', 'SALAH'); end end end
Subscribe to:
Posts (Atom)