discmania78.blogspot.com
Discmania 78: Expert System Design
http://discmania78.blogspot.com/2009/11/our-idea.html
Selasa, 24 November 2009. Our simple design of expert system is:. What is your suitable major? We often find some student that feel confuse to decide what major they will take for their next study. Sometimes they fell hesitate to ask their teacher, or some other case just like leak of information, and difficult to get information about Universities. So because of that we want to help them. Langganan: Poskan Komentar (Atom). Discrette Math Blog . Matematika Diskrit dan Segala Tugas-tugasnya. We are Inform...
discrethe.blogspot.com
d' Implicationz: Summary Loop
http://discrethe.blogspot.com/2009/12/summary-loop.html
Blog of Information Sys. Department students '09 of ITS for Descret Math class A. Kamis, 10 Desember 2009. 61fixed number of times Loop. Banyak bahasa pemrograman menyediakan 'for loop' yang memungkinkan satu set instruksi. Akan dieksekusi tetap beberapa kali. fasilitas tersebut tidak tersedia dalam Prolog. Tetapi efek yang sama dapat diperoleh dengan menggunakan rekursi, seperti ditunjukkan dalam. Contoh program di bawah ini. Keluaran program berikut bilangan bulat dari nilai tertentu sampai 1. Suatu pr...
integer-group.blogspot.com
Integer Group: OPERATOR AND ARITHMATIC in prolog
http://integer-group.blogspot.com/2009/11/blog-post.html
OPERATOR AND ARITHMATIC in prolog. Pada bab ini diperkenalkan notasi operator predikat dan menggambarkan operator. Disediakan untuk mengevaluasi dan membandingkan nilai-nilai ekspresi aritmatika, untuk. Pengujian untuk kesetaraan aritmatika baik ungkapan atau istilah-istilah dan untuk pengujian untuk. Negasi dari tujuan atau pemisahan dari dua gol. Binary predicate atau predikat dengan dua argumen dapat diubah menjadi bentuk infix operator. Contoh :. Standar : makan (kucing,tikus). Standar : lucu (anjing).
superohmz.blogspot.com
Discrete Math.: Rice-Crop Doctor Expert System by Using SWI-Prolog
http://superohmz.blogspot.com/2009/12/rice-crop-doctor-expert-system-by-using.html
Rice-Crop Doctor Expert System by Using SWI-Prolog. Hello hello all of my friends. Now I will show my Expert System using SWI-prolog. So chek this out. Firstly open your notepad and write like this as below. 2 And then save it with file name's is expertSystem.pl. 3 Then open your SWI-prolog and consult expertSystem.pl file. 4 Then write solusi(Penyakit, , ) to list what is the diseases of paddy. Don't forget! You must write start the character using capital. 5 so, this is the result. 9 then the result is.
discrethe.blogspot.com
d' Implicationz: INPUT & OUTPUT
http://discrethe.blogspot.com/2009/12/input-output.html
Blog of Information Sys. Department students '09 of ITS for Descret Math class A. Senin, 07 Desember 2009. Pertama buatlah file baru dengan rules:. Setelah itu consult rules tersebut dan masukkan "makelower." lalu ketik apa saja dengan menggunakan perbedaan huruf kapital. Maka hasilnya bisa dilihat sendiri . Langganan: Poskan Komentar (Atom). Link ke blog kami. Link ke Blog lain. Expert System Design (or Rancangan Sistem Pakar). Summary Operator dan Arithmetic.
discmania78.blogspot.com
Discmania 78: November 2009
http://discmania78.blogspot.com/2009_11_01_archive.html
Rabu, 25 November 2009. Input and Output in ProLog. The write/1 predicate takes a single argument, which must be a valid Prolog term. Evaluating the predicate causes the term to be written to the current output stream, which by default is the user's screen. Evaluating a nl goal causes a new line to be output to the current output stream. Write('a string of characters'),nl. A string of characters. Write([a,b,c,d,[x,y,z] ),nl. A,b,c,d,[x,y,z]. Write(mypred(a,b,c) ,nl. Example of use of nl. X = mypred(a,b,c).
discmania78.blogspot.com
Discmania 78: Oktober 2009
http://discmania78.blogspot.com/2009_10_01_archive.html
Kamis, 22 Oktober 2009. RULE BASED EXPERT SYSTEM. Expert System atau Sistem pakar. Rule Based Expert System. Representasi Pengetahuan dengan Rules (aturan) sering disebut juga dengan Sistem Produksi. Suatu Rule Terdiri dari 2 bagian, yaitu:. Antacedent, yaitu bagian yang mengekspresikan situasi atau premis (Pernyataan berawalan IF). Konsekuen, yaitu bagian yang menyatakan suatu tindakan tertentu atau konklusi yang diterapkan jika situasi atau premis bernilai benar (Pernyataan berawalan THEN). You can con...
discrethe.blogspot.com
d' Implicationz: Summary input output
http://discrethe.blogspot.com/2009/12/summary-input-output.html
Blog of Information Sys. Department students '09 of ITS for Descret Math class A. Kamis, 10 Desember 2009. Built-in predikat yang membaca dan menulis dengan baik untuk pengguna. Terminal (keyboard dan layar) atau file, kedua istilah tersebut dengan istilah dan character-. Semua output ke layar pengguna dan semua masukan pengguna adalah keyboard. Input dan output menggunakan file eksternal. Write('a string of characters'),nl. A string of characters. Write([a,b,c,d,[x,y,z] ),nl. A,b,c,d,[x,y,z]. Dalam inpu...
integer-group.blogspot.com
Integer Group: Summary
http://integer-group.blogspot.com/2009/12/summary.html
Many programming languages provide 'for loops' which enable a set of instructions to be executed a fixed number of times. No such facility is available in Prolog (directly), but a similar effect can be obtained using recursion, as shown in the example programs below. The following program outputs integers from a specified value down to 1. Loop(N):-N 0,write('The value is: '),write(N),nl,. M is N-1,loop(M). The value is: 6. The value is: 5. The value is: 4. The value is: 3. The value is: 2. The value is: 1.
discretesi.blogspot.com
math discrete: Simple Expert System
http://discretesi.blogspot.com/2009/12/simple-expert-system.html
Selasa, 15 Desember 2009. We make simple expert system to make someone more easier to find something what he want. Example, if someone want to buy a motorcycle, he/she can find what type of motorcycle he/she want with us this prolog program. For more distinct you can see like this below:. And if you want to fine a perusahaan san the tahun production of the motorcycle you can write " find(yamaha,2006).". And the result is:. That is our Simple Expert System, ,can help someone to find something more easier.