Blogger Widgets
Sumber : http://yaqindlive.blogspot.com/2013/02/cara-membuat-judul-dan-deskripsi-blog.html#ixzz2lk2g83rd

This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Barcelonistas

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Rabu, 21 Maret 2018

Algoritma Determinan Matriks dengan Matlab

 


 http://siakad.unja.ac.id/



 Beriikut Algoritma Determinan Matriks dengan Matlab:


disp('MENCARI DETERMINAN MATRIKS')
disp('--------------------------')
clc;
A=[1 2 3;4 5 6;7 8 9];
disp('Nilai determinannya adalah')
X=det(A)