ATILIM UNIVERSITY Department of Computer Engineering

Ebat: px
Şu sayfadan göstermeyi başlat:

Download "ATILIM UNIVERSITY Department of Computer Engineering"

Transkript

1 ATILIM UNIVERSITY Department of Computer Engineering COMPE 350 Numerical Methods Fall, 2011 Instructor: Fügen Selbes Assistant: İsmail Onur Kaya Homework: 1 Due date: Nov 14, 2011 You are designing a spherical tank to hold water for a small village in a developing country. The volume of liquid that is hold can be computed as V = π.h 2.[3R - h] / 3 where V = volume [m 3 ], h = depth of water in tank [m] and R = the tank radius [m]. For example, if depth of the water in tank is 4 m. and the tank radius is 2 m., then the volume of water is m 3. You are going to write the following MATLAB functions that will calculate the depth(h) of the water in the tank when the volume of water(v) and tank radius(r) is given. a. Write a MATLAB function called fixed_pt that takes volume(v), radius(r) and accuracy as inputs and gives the depth(h) of water and relative error as outputs. Use fixed-point method in determining the depth(h) of water and take the initial value of h as 2R (i.e. h 0 =2R).

2 The fixed_pt function should have the form: where function [h,rel_err]=fixed_pt(v,r,acc) V : Volume of the water R : Radius of the tank acc: Iterations for h are performed until relative error is less than this number. h: The water depth estimates when fixed-point method is used. It is a vector (h 1, h 2, h 3, h 4, ). rel_err: The relative error estimates determined at each step of iteration. It is a vector. b. Write a MATLAB function called newton_raphson that takes volume(v), radius(r) and accuracy as inputs and gives the depth(h) of water and relative error as outputs. Use Newton-Raphson method in determining the depth(h) of water and take the initial value of h as 2R (i.e. h 0 =2R). The newton_raphson function should have the form: where function [h,rel_err]= newton_raphson (V,R,acc) V : Volume of the water R : Radius of the tank acc: Iterations for h are performed until relative error is less than this number. h: The water depth estimates when Newton-Raphson method is used. It is a vector (h 1, h 2, h 3, h 4, ). rel_err: The relative error estimates determined at each step of iteration. It is a vector. c. Test your functions with datas given below: V = 24 R = 4 acc = V = 40 R = 4 acc = V = 122 R = 4.6 acc = V = 256 R = 5 acc = V = 972 R = 9 acc = For each data give the results as a table: Fixed-Point Method Newton_Raphson Method i h i h (h i -h i-1 )/h i i (h i -h i-1 )/h i

3 NOTES: This is a group assignment with 2 students in each. Mail your homework to ismailonurkaya@gmail.com Attach the report(word document) and the script file(s) to your mail. Cheating is strictly forbidden. Late homework will be graded out of 10-d 2 (d is the number of late days). Don t forget to write your name. Don t forget to insert page numbers.

4 % % % % % % % % % % % % % % % % % % % % % % % % % % % % % HOMEWORK PART 1 % PROGRAM İLE İLGİLİ BİLGİLER AŞAĞIDA YER ALMAKTADIR... % % % % % % % % % % % % % % % % % % % % % % % % % % % % fixed_pt isimli programdır. % h değerini hesaplamak için fixed point methodu kullanıyor. % format long satırı, sayı formatını ayarlıyor. % h(0) yerine h(1) kullanıldı, programın devamı da ona göre kodlandı. % rel_err değerini başlangıç olarak random yerine 1 yapıldı. (önemsiz) % kaçıncı adımda olduğumuzu göstermek için i diye değişken tanımladık. % n=2 den başlattığımız için i'yi n-1 olarak tanımladık. % yani h(1)'de n=1 ancak eşit olduğu değer o h(0) değeridir. % mutlak relative error, acc'den büyük olduğunda döngü çalışır. % döngü içerisine de ana formülden çıkarılan, converge formül kullanıldı. % % % % % % % % % % % % % % % % % % % % % % % % % % % % function [i,h,rel_err] = fixed_pt(v,r,acc) format long; h(1)=2*r; rel_err=1; n=2; while (abs(rel_err)>abs(acc)) i=n-1 h(n)=sqrt((3*v+pi*h(n-1)^3)/(3*pi*r)); height=h(n) rel_err=(h(n)-h(n-1))/(h(n)) end n=n+1; end

5 % % % % % % % % % % % % % % % % % % % % % % % % % % % % % HOMEWORK PART 2 % PROGRAM İLE İLGİLİ BİLGİLER AŞAĞIDA YER ALMAKTADIR... % % % % % % % % % % % % % % % % % % % % % % % % % % % % newton_raphson isimli programdır. % h değerini hesaplamak için newton-raphson methodu kullanıyor. % format long satırı, sayı formatını ayarlıyor. % h(0) yerine h(1) kullanıldı, programın devamı da ona göre kodlandı. % rel_err değerini başlangıç olarak random yerine 1 yapıldı. (önemsiz) % kaçıncı adımda olduğumuzu göstermek için i diye değişken tanımladık. % n=2 den başlattığımız için i'yi n-1 olarak tanımladık. % yani h(1)'de n=1 ancak eşit olduğu değer o h(0) değeridir. % mutlak relative error, acc'den büyük olduğunda döngü çalışır. % döngü içinde h(n+1)=h(n)-f(h(n))/f'(h(n))'e uygun formül yazıldı. % % % % % % % % % % % % % % % % % % % % % % % % % % % % function [i,h,rel_err] = newton_raphson(v,r,acc) format long; h(1)=2*r; rel_err=1; n=2; while (abs(rel_err)>abs(acc)) i=n-1 h(n)=h(n-1)-(3*r*pi*h(n-1)^2-pi*h(n-1)^3-3*v)/(3*r*pi*2*h(n-1)-pi*3*h(n-1)^2); height=h(n) rel_err=(h(n)-h(n-1))/(h(n)) end n=n+1; end

6 ATILIM UNIVERSITY DEPARTMENT OF COMPUTER ENGINERING COMPE 350: NUMERICAL METHODS HOMEWORK: 1 Instructor: Fügen Selbes Asistant: İsmail Onur Kaya Submitted to: ismailonurkaya@gmail.com Submitted by: FALL SEMESTER 1

7 PART 1: Matlab script of fixed_pt function(attached to ); Note: Instructions are given in the program. PART 2: Matlab script of newton_raphson function(attached to ); Note: Instructions are given in the program. Data table of V=24, R=4, acc=10-12 ; i Inf NaN e e e e e e e e e e e e e-013 2

8 Data table of V=40, R=4, acc=10-12 ; i Inf NaN e e e e e e e e e e e e e e e e-013 3

9 Data table of V=122, R=4.6, acc=10-12 ; i Inf NaN e e e e e e e e e e e e e e e e e e e e e e-013 4

10 Data table of V=256, R=5, acc=10-12 ; i Inf NaN e e e e e e e e e e e e e e e e e e e e e e e e e e e e e e e-013 5

11 Data table of V=972, R=9, acc=10-12 ; i Inf NaN e e e e e e e e e e e e e e e e e e e e e e-013 6

WEEK 11 CME323 NUMERIC ANALYSIS. Lect. Yasin ORTAKCI.

WEEK 11 CME323 NUMERIC ANALYSIS. Lect. Yasin ORTAKCI. WEEK 11 CME323 NUMERIC ANALYSIS Lect. Yasin ORTAKCI yasinortakci@karabuk.edu.tr 2 INTERPOLATION Introduction A census of the population of the United States is taken every 10 years. The following table

Detaylı

Do not open the exam until you are told that you may begin.

Do not open the exam until you are told that you may begin. OKAN ÜNİVERSİTESİ MÜHENDİSLİK-MİMARLIK FAKÜLTESİ MÜHENDİSLİK TEMEL BİLİMLERİ BÖLÜMÜ 2015.11.10 MAT461 Fonksiyonel Analiz I Arasınav N. Course Adi: Soyadi: Öğrenc i No: İmza: Ö R N E K T İ R S A M P L E

Detaylı

Unlike analytical solutions, numerical methods have an error range. In addition to this

Unlike analytical solutions, numerical methods have an error range. In addition to this ERROR Unlike analytical solutions, numerical methods have an error range. In addition to this input data may have errors. There are 5 basis source of error: The Source of Error 1. Measuring Errors Data

Detaylı

Do not open the exam until you are told that you may begin.

Do not open the exam until you are told that you may begin. ÖRNEKTİR ÖRNEKTİR ÖRNEKTİR ÖRNEKTİR ÖRNEKTİR OKAN ÜNİVERSİTESİ FEN EDEBİYAT FAKÜLTESİ MATEMATİK BÖLÜMÜ 03.11.2011 MAT 461 Fonksiyonel Analiz I Ara Sınav N. Course ADI SOYADI ÖĞRENCİ NO İMZA Do not open

Detaylı

BBM Discrete Structures: Final Exam Date: , Time: 15:00-17:00

BBM Discrete Structures: Final Exam Date: , Time: 15:00-17:00 BBM 205 - Discrete Structures: Final Exam Date: 12.1.2017, Time: 15:00-17:00 Ad Soyad / Name: Ögrenci No /Student ID: Question: 1 2 3 4 5 6 7 8 9 10 11 Total Points: 6 16 8 8 10 9 6 8 14 5 10 100 Score:

Detaylı

Yaz okulunda (2014 3) açılacak olan 2360120 (Calculus of Fun. of Sev. Var.) dersine kayıtlar aşağıdaki kurallara göre yapılacaktır:

Yaz okulunda (2014 3) açılacak olan 2360120 (Calculus of Fun. of Sev. Var.) dersine kayıtlar aşağıdaki kurallara göre yapılacaktır: Yaz okulunda (2014 3) açılacak olan 2360120 (Calculus of Fun. of Sev. Var.) dersine kayıtlar aşağıdaki kurallara göre yapılacaktır: Her bir sınıf kontenjanı YALNIZCA aşağıdaki koşullara uyan öğrenciler

Detaylı

WEEK 4 BLM323 NUMERIC ANALYSIS. Okt. Yasin ORTAKCI.

WEEK 4 BLM323 NUMERIC ANALYSIS. Okt. Yasin ORTAKCI. WEEK 4 BLM33 NUMERIC ANALYSIS Okt. Yasin ORTAKCI yasinortakci@karabuk.edu.tr Karabük Üniversitesi Uzaktan Eğitim Uygulama ve Araştırma Merkezi BLM33 NONLINEAR EQUATION SYSTEM Two or more degree polinomial

Detaylı

Uygulama, bir öğrencinin dersi bırakıp aynı anda bir arkadaşının dersi almasına engel olacak şekilde kurgulanmıştır. Buna göre:

Uygulama, bir öğrencinin dersi bırakıp aynı anda bir arkadaşının dersi almasına engel olacak şekilde kurgulanmıştır. Buna göre: YAZ OKULUNDA AÇILAN MATEMATİK SERVİS DERSLERİNE KAYIT Matematik Bölümü tarafından verilen servis derslerinde kontenjanlar sınırlıdır. Taleplerin tümünün karşılanması mümkün olmayacaktır. Belirtilen derslerde

Detaylı

4. HAFTA BLM323 SAYISAL ANALİZ. Okt. Yasin ORTAKCI.

4. HAFTA BLM323 SAYISAL ANALİZ. Okt. Yasin ORTAKCI. 4. HAFTA BLM33 SAYISAL ANALİZ Okt. Yasin ORTAKCI yasinortakci@karabuk.edu.tr Karabük Üniversitesi Uzaktan Eğitim Uygulama ve Araştırma Merkezi BLM33 NONLINEAR EQUATION SYSTEM Two or more degree polinomial

Detaylı

BBM Discrete Structures: Midterm 2 Date: , Time: 16:00-17:30. Question: Total Points: Score:

BBM Discrete Structures: Midterm 2 Date: , Time: 16:00-17:30. Question: Total Points: Score: BBM 205 - Discrete Structures: Midterm 2 Date: 8.12.2016, Time: 16:00-17:30 Ad Soyad / Name: Ögrenci No /Student ID: Question: 1 2 3 4 5 6 7 Total Points: 12 22 10 10 15 16 15 100 Score: 1. (12 points)

Detaylı

DOKUZ EYLUL UNIVERSITY FACULTY OF ENGINEERING OFFICE OF THE DEAN COURSE / MODULE / BLOCK DETAILS ACADEMIC YEAR / SEMESTER

DOKUZ EYLUL UNIVERSITY FACULTY OF ENGINEERING OFFICE OF THE DEAN COURSE / MODULE / BLOCK DETAILS ACADEMIC YEAR / SEMESTER Offered by: Bilgisayar Mühendisliği Course Title: COMPUTER PROGRAMMING Course Org. Title: COMPUTER PROGRAMMING Course Level: Course Code: CME 0 Language of Instruction: İngilizce Form Submitting/Renewal

Detaylı

INTERSHIP DIARY GUIDELINE/ STAJ DEFTERİ HAZIRLAMA REHBERİ

INTERSHIP DIARY GUIDELINE/ STAJ DEFTERİ HAZIRLAMA REHBERİ ANTALYA INTERNATIONAL UNIVERSITY/ ULUSLARARASI ANTALYA ÜNİVERSİTESİ COLLEGE OF TOURISM / TURİZM FAKÜLTESİ OF TOURISM AND HOTEL MANAGEMENT/ TURİZM VE OTEL İŞLETMECİLİĞİ INTERSHIP DIARY GUIDELINE/ STAJ DEFTERİ

Detaylı

ÖRNEKTİR - SAMPLE. RCSummer Ön Kayıt Formu Örneği - Sample Pre-Registration Form

ÖRNEKTİR - SAMPLE. RCSummer Ön Kayıt Formu Örneği - Sample Pre-Registration Form RCSummer 2019 - Ön Kayıt Formu Örneği - Sample Pre-Registration Form BU FORM SADECE ÖN KAYIT FORMUDUR. Ön kaydınızın geçerli olması için formda verilen bilgilerin doğru olması gerekmektedir. Kontenjanımız

Detaylı

Teknoloji Servisleri; (Technology Services)

Teknoloji Servisleri; (Technology Services) Antalya International University Teknoloji Servisleri; (Technology Services) Microsoft Ofis Yazılımları (Microsoft Office Software), How to Update Office 365 User Details How to forward email in Office

Detaylı

12. HAFTA BLM323 SAYISAL ANALİZ. Okt. Yasin ORTAKCI. yasinortakci@karabuk.edu.tr

12. HAFTA BLM323 SAYISAL ANALİZ. Okt. Yasin ORTAKCI. yasinortakci@karabuk.edu.tr 1. HAFTA BLM33 SAYISAL ANALİZ Okt. Yasin ORTAKCI yasinortakci@karabuk.edu.tr Karabük Üniversitesi Uzaktan Eğitim Uygulama ve Araştırma Merkezi DIVIDED DIFFERENCE INTERPOLATION Forward Divided Differences

Detaylı

DOKUZ EYLUL UNIVERSITY FACULTY OF ENGINEERING OFFICE OF THE DEAN COURSE / MODULE / BLOCK DETAILS ACADEMIC YEAR / SEMESTER. Course Code: MMM 4039

DOKUZ EYLUL UNIVERSITY FACULTY OF ENGINEERING OFFICE OF THE DEAN COURSE / MODULE / BLOCK DETAILS ACADEMIC YEAR / SEMESTER. Course Code: MMM 4039 Offered by: Metalurji ve Malzeme Mühendisliği Course Title: STRUCTURAL CERAMICS Course Org. Title: YAPI SERAMİKLERİ Course Level: Lisans Course Code: MMM 09 Language of Instruction: Türkçe Form Submitting/Renewal

Detaylı

10.7442 g Na2HPO4.12H2O alınır, 500mL lik balonjojede hacim tamamlanır.

10.7442 g Na2HPO4.12H2O alınır, 500mL lik balonjojede hacim tamamlanır. 1-0,12 N 500 ml Na2HPO4 çözeltisi, Na2HPO4.12H2O kullanılarak nasıl hazırlanır? Bu çözeltiden alınan 1 ml lik bir kısım saf su ile 1000 ml ye seyreltiliyor. Son çözelti kaç Normaldir? Kaç ppm dir? % kaçlıktır?

Detaylı

YEDİTEPE ÜNİVERSİTESİ MÜHENDİSLİK VE MİMARLIK FAKÜLTESİ

YEDİTEPE ÜNİVERSİTESİ MÜHENDİSLİK VE MİMARLIK FAKÜLTESİ ÖĞRENCİ NİN STUDENT S YEDİTEPE ÜNİVERSİTESİ STAJ DEFTERİ TRAINING DIARY Adı, Soyadı Name, Lastname : No ID Bölümü Department : : Fotoğraf Photo Öğretim Yılı Academic Year : Academic Honesty Pledge I pledge

Detaylı

#include <stdio.h> int main(void) { FILE * dosya; dosya = fopen("soru1.txt", "w"); fprintf(dosya, "Merhaba Dunya!"); fclose(dosya); return 0; }

#include <stdio.h> int main(void) { FILE * dosya; dosya = fopen(soru1.txt, w); fprintf(dosya, Merhaba Dunya!); fclose(dosya); return 0; } Ege University Electrical and Electronics Engineering Introduction to Computer Programming Laboratory Lab 12 - Text IO 1) Working Directory Create a file named Question1.txt and write Hello World! to the

Detaylı

YEDİTEPE ÜNİVERSİTESİ MÜHENDİSLİK VE MİMARLIK FAKÜLTESİ

YEDİTEPE ÜNİVERSİTESİ MÜHENDİSLİK VE MİMARLIK FAKÜLTESİ MÜHENDİSLİK VE MİMARLIK FAKÜLTESİ STAJ DEFTERİ TRAINING DIARY Adı, Soyadı Name, Lastname : ÖĞRENCİ NİN STUDENT S No ID Bölümü Department : : Fotoğraf Photo Öğretim Yılı Academic Year : Academic Honesty

Detaylı

MATH PROFICIENCY EXAM RESULTS (2013)

MATH PROFICIENCY EXAM RESULTS (2013) MATH PROFICIENCY EXAM RESULTS (2013) If your result is SATISFACTORY, you can take MATH151- Calculus I. If your result is UNSATISFACTORY, you should take MATH100- Precalculus. Eğer sınav sonucunuz SATISFACTORY

Detaylı

Week 5 Examples and Analysis of Algorithms

Week 5 Examples and Analysis of Algorithms CME111 Programming Languages I Week 5 Examples and Analysis of Algorithms Assist. Prof. Dr. Caner ÖZCAN BONUS HOMEWORK For the following questions (which solved in lab. practice), draw flow diagrams by

Detaylı

Ege Üniversitesi Elektrik Elektronik Mühendisliği Bölümü Kontrol Sistemleri II Dersi Grup Adı: Sıvı Seviye Kontrol Deneyi.../..

Ege Üniversitesi Elektrik Elektronik Mühendisliği Bölümü Kontrol Sistemleri II Dersi Grup Adı: Sıvı Seviye Kontrol Deneyi.../.. Ege Üniversitesi Elektrik Elektronik Mühendisliği Bölümü Kontrol Sistemleri II Dersi Grup Adı: Sıvı Seviye Kontrol Deneyi.../../2015 KP Pompa akış sabiti 3.3 cm3/s/v DO1 Çıkış-1 in ağız çapı 0.635 cm DO2

Detaylı

Cambridge International Examinations Cambridge International General Certificate of Secondary Education

Cambridge International Examinations Cambridge International General Certificate of Secondary Education Cambridge International Examinations Cambridge International General Certificate of Secondary Education *3113065274* FIRST LANGUAGE TURKISH 0513/01 Paper 1 Reading May/June 2017 Candidates answer on the

Detaylı

Cambridge International Examinations Cambridge International General Certificate of Secondary Education

Cambridge International Examinations Cambridge International General Certificate of Secondary Education Cambridge International Examinations Cambridge International General Certificate of Secondary Education *9844633740* FIRST LANGUAGE TURKISH 0513/02 Paper 2 Writing May/June 2017 2 hours Candidates answer

Detaylı

Cambridge International Examinations Cambridge International General Certificate of Secondary Education

Cambridge International Examinations Cambridge International General Certificate of Secondary Education Cambridge International Examinations Cambridge International General Certificate of Secondary Education *6468430870* FIRST LANGUAGE TURKISH 0513/01 Paper 1 Reading May/June 2015 Candidates answer on the

Detaylı

DOKUZ EYLUL UNIVERSITY FACULTY OF ENGINEERING OFFICE OF THE DEAN COURSE / MODULE / BLOCK DETAILS ACADEMIC YEAR / SEMESTER. Course Code: MAK 1021

DOKUZ EYLUL UNIVERSITY FACULTY OF ENGINEERING OFFICE OF THE DEAN COURSE / MODULE / BLOCK DETAILS ACADEMIC YEAR / SEMESTER. Course Code: MAK 1021 Offered by: Makina Mühendisliği Course Title: WORKSHOP TRAINING ( WEEK) Course Org. Title: ATÖLYE EĞİTİMİ( HAFTA) Course Level: Lisans Course Code: MAK 0 Language of Instruction: Türkçe Form Submitting/Renewal

Detaylı

BAŞVURU ŞİFRE EDİNME EKRANI/APPLICATION PASSWORD ACQUISITION SCREEN

BAŞVURU ŞİFRE EDİNME EKRANI/APPLICATION PASSWORD ACQUISITION SCREEN BAŞVURU ŞİFRE EDİNME EKRANI/APPLICATION PASSWORD ACQUISITION SCREEN 1) http://obs.karatay.edu.tr/oibs/ogrsis/basvuru_yabanci_login.aspx Linkinden E-Mail adresini kullanarak şifrenizi oluşturunuz. Create

Detaylı

DOKUZ EYLUL UNIVERSITY FACULTY OF ENGINEERING OFFICE OF THE DEAN COURSE / MODULE / BLOCK DETAILS ACADEMIC YEAR / SEMESTER. Course Code: IND 3915

DOKUZ EYLUL UNIVERSITY FACULTY OF ENGINEERING OFFICE OF THE DEAN COURSE / MODULE / BLOCK DETAILS ACADEMIC YEAR / SEMESTER. Course Code: IND 3915 Offered by: Endüstri Mühendisliği Course Title: FORECASTING AND TIME SERIES ANALYSIS Course Org. Title: FORECASTING AND TIME SERIES ANALYSIS Course Level: Lisans Course Code: IND 95 Language of Instruction:

Detaylı

Cambridge International Examinations Cambridge International General Certificate of Secondary Education

Cambridge International Examinations Cambridge International General Certificate of Secondary Education Cambridge International Examinations Cambridge International General Certificate of Secondary Education *2754405912* FIRST LANGUAGE TURKISH 0513/02 Paper 2 Writing May/June 2018 2 hours Candidates answer

Detaylı

Cambridge International Examinations Cambridge International General Certificate of Secondary Education

Cambridge International Examinations Cambridge International General Certificate of Secondary Education Cambridge International Examinations Cambridge International General Certificate of Secondary Education *5071475631* FIRST LANGUAGE TURKISH 0513/01 Paper 1 Reading May/June 2016 Candidates answer on the

Detaylı

DOKUZ EYLUL UNIVERSITY FACULTY OF ENGINEERING OFFICE OF THE DEAN COURSE / MODULE / BLOCK DETAILS ACADEMIC YEAR / SEMESTER. Course Code: CME 4002

DOKUZ EYLUL UNIVERSITY FACULTY OF ENGINEERING OFFICE OF THE DEAN COURSE / MODULE / BLOCK DETAILS ACADEMIC YEAR / SEMESTER. Course Code: CME 4002 Offered by: Bilgisayar Mühendisliği Course Title: SENIOR PROJECT Course Org. Title: SENIOR PROJECT Course Level: Lisans Course Code: CME 4002 Language of Instruction: İngilizce Form Submitting/Renewal

Detaylı

Newborn Upfront Payment & Newborn Supplement

Newborn Upfront Payment & Newborn Supplement TURKISH Newborn Upfront Payment & Newborn Supplement Female 1: Bebeğim yakında doğacağı için bütçemi gözden geçirmeliyim. Duyduğuma göre, hükümet tarafından verilen Baby Bonus ödeneği yürürlükten kaldırıldı.

Detaylı

The University of Jordan. Accreditation & Quality Assurance Center. COURSE Syllabus

The University of Jordan. Accreditation & Quality Assurance Center. COURSE Syllabus The University of Jordan Accreditation & Quality Assurance Center COURSE Syllabus 1 Course title Turkish in the Field of Media 2 Course number 2204333 Credit hours (theory, practical) 3 3 Contact hours

Detaylı

Neyzen olabilmek için en önemli özellik; sabretmeyi bilmektir. In order to be a neyzen the most important thing is to be patient.

Neyzen olabilmek için en önemli özellik; sabretmeyi bilmektir. In order to be a neyzen the most important thing is to be patient. www.neyzen.com NEY METODU SAYFA 033 NEY METHOD PAGE 033 Yücel Müzik İKİNCİ DEVRE SESLER Öğreneceğimiz NEVÂ, NÎM HİCÂZ, ÇÂRGÂH, SEGÂH, KÜRDÎ, DÜGÂH ve RAST seslerinin tümünü üflerken, aşîrân perdesinin

Detaylı

Seri kablo bağlantısında Windows95/98/ME'ten Windows 2000'e bağlantı Windows95/98/ME - NT4 bağlantısına çok benzer.

Seri kablo bağlantısında Windows95/98/ME'ten Windows 2000'e bağlantı Windows95/98/ME - NT4 bağlantısına çok benzer. Seri kablo bağlantısında Windows95/98/ME'ten Windows 2000'e bağlantı Windows95/98/ME NT4 bağlantısına çok benzer. Direkt Kablo desteğini Windows95/98'e yükledikten sonra, Windows95 for Direct Cable Client

Detaylı

A UNIFIED APPROACH IN GPS ACCURACY DETERMINATION STUDIES

A UNIFIED APPROACH IN GPS ACCURACY DETERMINATION STUDIES A UNIFIED APPROACH IN GPS ACCURACY DETERMINATION STUDIES by Didem Öztürk B.S., Geodesy and Photogrammetry Department Yildiz Technical University, 2005 Submitted to the Kandilli Observatory and Earthquake

Detaylı

DOKUZ EYLUL UNIVERSITY FACULTY OF ENGINEERING OFFICE OF THE DEAN COURSE / MODULE / BLOCK DETAILS ACADEMIC YEAR / SEMESTER. Course Code: MAK 1011

DOKUZ EYLUL UNIVERSITY FACULTY OF ENGINEERING OFFICE OF THE DEAN COURSE / MODULE / BLOCK DETAILS ACADEMIC YEAR / SEMESTER. Course Code: MAK 1011 Offered by: Makina Mühendisliği Course Title: TECHNICAL DRAWING Course Org. Title: TEKNİK RESİM Course Level: Lisans Course Code: MAK 0 Language of Instruction: Türkçe Form Submitting/Renewal Date 0/0/0

Detaylı

1 I S L U Y G U L A M A L I İ K T İ S A T _ U Y G U L A M A ( 5 ) _ 3 0 K a s ı m

1 I S L U Y G U L A M A L I İ K T İ S A T _ U Y G U L A M A ( 5 ) _ 3 0 K a s ı m 1 I S L 8 0 5 U Y G U L A M A L I İ K T İ S A T _ U Y G U L A M A ( 5 ) _ 3 0 K a s ı m 2 0 1 2 CEVAPLAR 1. Tekelci bir firmanın sabit bir ortalama ve marjinal maliyet ( = =$5) ile ürettiğini ve =53 şeklinde

Detaylı

MATLAB a GİRİŞ. Doç. Dr. Mehmet İTİK. Karadeniz Teknik Üniversitesi Makine Mühendisliği Bölümü

MATLAB a GİRİŞ. Doç. Dr. Mehmet İTİK. Karadeniz Teknik Üniversitesi Makine Mühendisliği Bölümü MATLAB a GİRİŞ Doç. Dr. Mehmet İTİK Karadeniz Teknik Üniversitesi Makine Mühendisliği Bölümü İçerik: MATLAB nedir? MATLAB arayüzü ve Bileşenleri (Toolbox) Değişkenler, Matris ve Vektörler Aritmetik işlemler

Detaylı

Present continous tense

Present continous tense Present continous tense This tense is mainly used for talking about what is happening now. In English, the verb would be changed by adding the suffix ing, and using it in conjunction with the correct form

Detaylı

STAJ RAPORU INTERNSHIP REPORT

STAJ RAPORU INTERNSHIP REPORT STAJ RAPORU INTERNSHIP REPORT ÖĞRENCİ BİLGİSİ STUDENT INFORMATION ADI VE SOYADI NAME AND LASTNAME ÖĞRENCİ NO STUDENT ID PROGRAM / SINIFI PROGRAM / CLASS ÖĞRENİM YILI ACADEMIC YEAR Staj Bilgileri Internship

Detaylı

Virtualmin'e Yeni Web Sitesi Host Etmek - Domain Eklemek

Virtualmin'e Yeni Web Sitesi Host Etmek - Domain Eklemek Yeni bir web sitesi tanımlamak, FTP ve Email ayarlarını ayarlamak için yapılması gerekenler Öncelikle Sol Menüden Create Virtual Server(Burdaki Virtual server ifadesi sizi yanıltmasın Reseller gibi düşünün

Detaylı

DOKUZ EYLUL UNIVERSITY FACULTY OF ENGINEERING OFFICE OF THE DEAN COURSE / MODULE / BLOCK DETAILS ACADEMIC YEAR / SEMESTER. Course Code: END 3933

DOKUZ EYLUL UNIVERSITY FACULTY OF ENGINEERING OFFICE OF THE DEAN COURSE / MODULE / BLOCK DETAILS ACADEMIC YEAR / SEMESTER. Course Code: END 3933 Offered by: Endüstri Mühendisliği Course Title: CONTROL SYSTEMS TECHNOLOGY Course Org. Title: KONTROL SİSTEMİ TEKNOLOJİLERİ Course Level: Lisans Course Code: END 9 Language of Instruction: Türkçe Form

Detaylı

Mezun ( ) Sınav Salon Numarası GENEL AÇIKLAMA (GENERAL INSTRUCTIONS) In the test,

Mezun ( ) Sınav Salon Numarası GENEL AÇIKLAMA (GENERAL INSTRUCTIONS) In the test, Karadeniz Teknik Üniversitesi Yabancı Uyruklu Öğrenci Sınavı (KTÜYÖS) Karadeniz Technical University The Examination for Foreign Students A TEMEL ÖĞRENME BECERİLERİ TESTİ / THE BASIC LEARNING SKILLS TEST

Detaylı

DOKUZ EYLUL UNIVERSITY FACULTY OF ENGINEERING OFFICE OF THE DEAN COURSE / MODULE / BLOCK DETAILS ACADEMIC YEAR / SEMESTER. Course Code: MMM 4027

DOKUZ EYLUL UNIVERSITY FACULTY OF ENGINEERING OFFICE OF THE DEAN COURSE / MODULE / BLOCK DETAILS ACADEMIC YEAR / SEMESTER. Course Code: MMM 4027 Offered by: Metalurji ve Malzeme Mühendisliği Course Title: MATERIALS OF SPACE AND AVIATION Course Org. Title: UZAY VE HAVACILIK MALZEMELERİ Course Level: Lisans Course Code: MMM 027 Language of Instruction:

Detaylı

Cambridge International Examinations Cambridge International General Certificate of Secondary Education

Cambridge International Examinations Cambridge International General Certificate of Secondary Education Cambridge International Examinations Cambridge International General Certificate of Secondary Education *4513746050* FIRST LANGUAGE TURKISH 0513/02 Paper 2 Writing May/June 2015 2 hours Candidates answer

Detaylı

Immigration Studying. Studying - University. Stating that you want to enroll. Stating that you want to apply for a course.

Immigration Studying. Studying - University. Stating that you want to enroll. Stating that you want to apply for a course. - University I would like to enroll at a university. Stating that you want to enroll I want to apply for course. Stating that you want to apply for a course an undergraduate a postgraduate a PhD a full-time

Detaylı

BBM Discrete Structures: Final Exam - ANSWERS Date: , Time: 15:00-17:00

BBM Discrete Structures: Final Exam - ANSWERS Date: , Time: 15:00-17:00 BBM 205 - Discrete Structures: Final Exam - ANSWERS Date: 12.1.2017, Time: 15:00-17:00 Ad Soyad / Name: Ögrenci No /Student ID: Question: 1 2 3 4 5 6 7 8 9 10 11 Total Points: 6 16 8 8 10 9 6 8 14 5 10

Detaylı

Bölüm 6. Diziler (arrays) Temel kavramlar Tek boyutlu diziler Çok boyutlu diziler

Bölüm 6. Diziler (arrays) Temel kavramlar Tek boyutlu diziler Çok boyutlu diziler Bölüm 6 Diziler (arrays) Temel kavramlar Tek boyutlu diziler Çok boyutlu diziler Chapter 6 Java: an Introduction to Computer Science & Programming - Walter Savitch 1 Genel Bakış Dizi: Hepsi aynı türde

Detaylı

IDENTITY MANAGEMENT FOR EXTERNAL USERS

IDENTITY MANAGEMENT FOR EXTERNAL USERS 1/11 Sürüm Numarası Değişiklik Tarihi Değişikliği Yapan Erman Ulusoy Açıklama İlk Sürüm IDENTITY MANAGEMENT FOR EXTERNAL USERS You can connect EXTERNAL Identity Management System (IDM) with https://selfservice.tai.com.tr/

Detaylı

MATEMATİK BÖLÜMÜ BÖLÜM KODU:3201

MATEMATİK BÖLÜMÜ BÖLÜM KODU:3201 BÖLÜM KODU:01 011-01 01.Yarıyıl Dersleri 0.Yarıyıl Dersleri MTK 101 Analiz I Analysis I 4 1 5 6 MTK 10 Analiz II Analysis II 4 1 5 6 MTK 11 Lineer Cebir I Linear Algebra I 1 4 MTK 1 Lineer Cebir II Linear

Detaylı

YEDİTEPE ÜNİVERSİTESİ MÜHENDİSLİK VE MİMARLIK FAKÜLTESİ

YEDİTEPE ÜNİVERSİTESİ MÜHENDİSLİK VE MİMARLIK FAKÜLTESİ MÜHENDİSLİK VE MİMARLIK FAKÜLTESİ STAJ DEFTERİ TRAINING DIARY No ID Bölümü Department Fotoğraf Photo Öğretim Yılı Academic Year STAJ DEFTERİ / TRAINING DIARY Defter No / Diary Nr... YAPILAN PRATİK ACCOMPLISHMENTS

Detaylı

DOKUZ EYLUL UNIVERSITY FACULTY OF ENGINEERING OFFICE OF THE DEAN COURSE / MODULE / BLOCK DETAILS ACADEMIC YEAR / SEMESTER. Course Code: MAK 2029

DOKUZ EYLUL UNIVERSITY FACULTY OF ENGINEERING OFFICE OF THE DEAN COURSE / MODULE / BLOCK DETAILS ACADEMIC YEAR / SEMESTER. Course Code: MAK 2029 Offered by: Makina Mühendisliği Course Title: STRENGTH OF MATERIALS Course Org. Title: MUKAVEMET Course Level: Lisans Course Code: MAK 09 Language of Instruction: Türkçe Form Submitting/Renewal Date 18/09/01

Detaylı

TURKISH DIAGNOSTIC TEST TURKISH DEPARTMENT

TURKISH DIAGNOSTIC TEST TURKISH DEPARTMENT TURKISH DIAGNOSTIC TEST BY TURKISH DEPARTMENT This examination is designed to measure your mastery of the Turkish language. The test is multiple choices based and is there for diagnostic purposes to assess

Detaylı

DOKUZ EYLUL UNIVERSITY FACULTY OF ENGINEERING OFFICE OF THE DEAN COURSE / MODULE / BLOCK DETAILS ACADEMIC YEAR / SEMESTER. Course Code: IND 4912

DOKUZ EYLUL UNIVERSITY FACULTY OF ENGINEERING OFFICE OF THE DEAN COURSE / MODULE / BLOCK DETAILS ACADEMIC YEAR / SEMESTER. Course Code: IND 4912 Offered by: Endüstri Mühendisliği Course Title: PRINCIPLES OF SUSTAINABILITY Course Org. Title: PRINCIPLES OF SUSTAINABILITY Course Level: Lisans Course Code: IND 9 Language of Instruction: İngilizce Form

Detaylı

Cases in the Turkish Language

Cases in the Turkish Language Fluentinturkish.com Cases in the Turkish Language Grammar Cases Postpositions, circumpositions and prepositions are the words or morphemes that express location to some kind of reference. They are all

Detaylı

Python ile Programlamaya Giriş DERS 6: DÖNGÜLER DR. HÜSEYİN BAHTİYAR

Python ile Programlamaya Giriş DERS 6: DÖNGÜLER DR. HÜSEYİN BAHTİYAR Python ile Programlamaya Giriş DERS 6: DÖNGÜLER DR. HÜSEYİN BAHTİYAR 1 Döngü Tipleri Döngü İçinde Sayma zork = 0 print('once', zork) for thing in [9, 41, 12, 3, 74, 15] : zork = zork + 1 print(zork, thing)

Detaylı

.. ÜNİVERSİTESİ UNIVERSITY ÖĞRENCİ NİHAİ RAPORU STUDENT FINAL REPORT

.. ÜNİVERSİTESİ UNIVERSITY ÖĞRENCİ NİHAİ RAPORU STUDENT FINAL REPORT .. ÜNİVERSİTESİ UNIVERSITY... /... AKADEMİK YILI... DÖNEMİ... /... ACADEMIC YEAR... TERM ÖĞRENCİ NİHAİ RAPORU STUDENT FINAL REPORT Deneyimleriniz hakkındaki bu rapor, Mevlana Değişim Programı nın amacına

Detaylı

Dersin Türü (Course Type) Zorunlu (Compulsory)[Χ] Seçmeli (Elective) [ ]

Dersin Türü (Course Type) Zorunlu (Compulsory)[Χ] Seçmeli (Elective) [ ] Programın Adı (Program Name) Kodu (Course Code) CS 102 Molecüler Biyoloji ve Genetik (Molecular Biology and Genetics) Adı (Course Name) Türü (Course Type) Zorunlu (Compulsory)[Χ] Seçmeli (Elective) [ ]

Detaylı

KÖMÜRCÜOĞLU MERMER FİRMASI TRAVERTEN DOĞALTAŞINA AİT DONA DAYANIM ANALİZ RAPORU

KÖMÜRCÜOĞLU MERMER FİRMASI TRAVERTEN DOĞALTAŞINA AİT DONA DAYANIM ANALİZ RAPORU T.C. PAMUKKALE ÜNİERSİTESİ MÜHENDİSLİK FAKÜLTESİ KÖMÜRCÜOĞLU MERMER FİRMASI TRAERTEN DOĞALTAŞINA AİT DONA DAYANIM ANALİZ RAPORU Hazırlayan: Yrd. Doç. Dr. İbrahim ÇOBANOĞLU Şubat - 216 DENİZLİ Pamukkale

Detaylı

DOKUZ EYLÜL ÜNİVERSİTESİ MÜHENDİSLİK FAKÜLTESİ DEKANLIĞI DERS/MODÜL/BLOK TANITIM FORMU. Dersin Orjinal Adı: CALCULUS II. Dersin Kodu: MAT 1002

DOKUZ EYLÜL ÜNİVERSİTESİ MÜHENDİSLİK FAKÜLTESİ DEKANLIĞI DERS/MODÜL/BLOK TANITIM FORMU. Dersin Orjinal Adı: CALCULUS II. Dersin Kodu: MAT 1002 Dersi Veren Birim: Mühendislik Fakültesi Dersin Türkçe Adı: MATEMATİK II Dersin Orjinal Adı: CALCULUS II Dersin Düzeyi:(Ön lisans, Lisans, Yüksek Lisans, Doktora) Lisans Dersin Kodu: MAT 100 Dersin Öğretim

Detaylı

EXAM CONTENT SINAV İÇERİĞİ

EXAM CONTENT SINAV İÇERİĞİ SINAV İÇERİĞİ Uluslararası Öğrenci Sınavı, 45 Genel Yetenek 35 Matematik sorusunu içeren Temel Öğrenme Becerileri Testinden oluşmaktadır. 4 yanlış cevap bir doğru cevabı götürür. Sınav süresi 90 dakikadır.

Detaylı

The University of Jordan. Accreditation & Quality Assurance Center. COURSE Syllabus

The University of Jordan. Accreditation & Quality Assurance Center. COURSE Syllabus The University of Jordan Accreditation & Quality Assurance Center COURSE Syllabus 1 Course title TURKISH FOR BEGİNNERS II 2 Course number 2204122 3 Credit hours (theory, practical) 3 Contact hours (theory,

Detaylı

EXAMINATION FOR FOREIGN OR OVERSEAS STUDENTS BASIC LEARNING SKILLS TEST 16.05.2015 GENEL AÇIKLAMA (GENERAL INSTRUCTIONS)

EXAMINATION FOR FOREIGN OR OVERSEAS STUDENTS BASIC LEARNING SKILLS TEST 16.05.2015 GENEL AÇIKLAMA (GENERAL INSTRUCTIONS) YURTD INDAN VEYA YABANCI UYRUKLU Ö RENC INAVI TEMEL Ö RENME BECER ER TEST EXAMINATION FOR FOREIGN OR OVERSEAS STUDENTS BASIC LEARNING SKILLS TEST 16.05.2015 ADI / NAME : SOYADI / SURNAME : ADAY NO / APPLICANT

Detaylı

ESKİŞEHİR OSMANGAZİ ÜNİVERSİTESİ

ESKİŞEHİR OSMANGAZİ ÜNİVERSİTESİ ESKİŞEHİR OSMANGAZİ ÜNİVERSİTESİ Mühendislik Mimarlık Fakültesi İnşaat Mühendisliği Bölümü E-Posta: ogu.ahmet.topcu@gmail.com Web: http://mmf2.ogu.edu.tr/atopcu Bilgisayar Destekli Nümerik Analiz Ders

Detaylı

It is symmetrical around the mean The random variable has an in nite theoretical range: 1 to +1

It is symmetrical around the mean The random variable has an in nite theoretical range: 1 to +1 The Normal Distribution f(x) µ s x It is bell-shaped Mean = Median = Mode It is symmetrical around the mean The random variable has an in nite theoretical range: 1 to +1 1 If random variable X has a normal

Detaylı

L2 L= nh. L4 L= nh. C2 C= pf. Term Term1 Num=1 Z=50 Ohm. Term2 Num=2 Z=50 Oh. C3 C= pf S-PARAMETERS

L2 L= nh. L4 L= nh. C2 C= pf. Term Term1 Num=1 Z=50 Ohm. Term2 Num=2 Z=50 Oh. C3 C= pf S-PARAMETERS 1- Design a coupled line 5th order 0.5 db equal-ripple bandpass filter with the following characteristics: Zo = 50 ohm, band edges = 3 GHz and 3.5 GHz, element values of LPF prototype are with N = 5: g1

Detaylı

Sample Questions for Mid-Term Exam of Physics Lab 1 Class

Sample Questions for Mid-Term Exam of Physics Lab 1 Class Sample Questions for Mid-Term Exam of Physics Lab 1 Class 1) A.) Fill the blanks with your experiments, choose any two of them (please use your own words). Name of the experiment Example: Projectile motion

Detaylı

SUMMER PRACTICE REPORT

SUMMER PRACTICE REPORT ADANA SCIENCE AND TECHNOLOGY UNIVERSITY SUMMER PRACTICE REPORT Full Name of Student Student Number & Education :. : /. Type of Practice : EEE 393 EEE 394 [Buraya yazın] Photograph of Student Full Name

Detaylı

HAZIRLAYANLAR: K. ALBAYRAK, E. CİĞEROĞLU, M. İ. GÖKLER

HAZIRLAYANLAR: K. ALBAYRAK, E. CİĞEROĞLU, M. İ. GÖKLER HAZIRLAYANLAR: K. ALBAYRAK, E. CİĞEROĞLU, M. İ. GÖKLER PROGRAM OUTCOME 13 Ability to Take Societal, Environmental and Economical Considerations into Account in Professional Activities Program outcome 13

Detaylı

APPLICATION QUESTIONNAIRE. Uygulama Soru Formu

APPLICATION QUESTIONNAIRE. Uygulama Soru Formu Dr.Bruno Lange GmbH & Co. KG Willstätter Str. 11 / 40549 Düsseldorf, Germany Phone : + 49 (0)211. 52. 88. 0 Fax : + 49 (0)211. 52. 88. 124 Email : anitsch@drlange.de, APPLICATION QUESTIONNAIRE Uygulama

Detaylı

Lesson 18 : Do..., Don t do... Ders 18: yap, yapma

Lesson 18 : Do..., Don t do... Ders 18: yap, yapma Lesson 18 : Do..., Don t do... Ders 18: yap, yapma Reading (Okuma) Walk on this road. (Bu yoldan yürü.) Write an email to me. (Bana bir e-posta yaz.) Dance on the stage! (Sahnede dans et!) Good night,

Detaylı

Fıstıkçı Şahap d t c ç

Fıstıkçı Şahap d t c ç To and from We have already seen the suffıx used for expressing the location of an object whether it s in, on or at something else: de. This suffix indicates that there is no movement and that the object

Detaylı

CSE225 DATA STRUCTURES 2006 Student Name: MIDTERM EXAM II M.B.T. Student Number:

CSE225 DATA STRUCTURES 2006 Student Name: MIDTERM EXAM II M.B.T. Student Number: . This exam includes 7 questions. 2. This is an open-book and open-notes exam. 3. Time for this exam is :50 hours. 4. Out of 0 points, you are required to complete 00 points to receive a full grade. 5.

Detaylı

DOKUZ EYLUL UNIVERSITY FACULTY OF ENGINEERING OFFICE OF THE DEAN COURSE / MODULE / BLOCK DETAILS ACADEMIC YEAR / SEMESTER. Course Code: END 3604

DOKUZ EYLUL UNIVERSITY FACULTY OF ENGINEERING OFFICE OF THE DEAN COURSE / MODULE / BLOCK DETAILS ACADEMIC YEAR / SEMESTER. Course Code: END 3604 Offered by: Endüstri Mühendisliği Course Title: ENGINEERING ECONOMICS Course Org. Title: MÜHENDİSLİK EKONOMİSİ Course Level: Lisans Course Code: END 360 Language of Instruction: Türkçe Form Submitting/Renewal

Detaylı

If you have any issue in outlook mail account like spam mail, mail send or receive issues, mail delivery problem, mail sending too late and.

If you have any issue in outlook mail account like spam mail, mail send or receive issues, mail delivery problem, mail sending too late and. Sign in oturum aç If you have any issue in outlook mail account like spam mail, mail send or receive issues, mail delivery problem, mail sending too late Sign in others oturum problem aç then call our

Detaylı

PROFESSIONAL DEVELOPMENT POLICY OPTIONS

PROFESSIONAL DEVELOPMENT POLICY OPTIONS PROFESSIONAL DEVELOPMENT POLICY OPTIONS INTRODUCTION AND POLICY EXPLORATION IN RELATION TO PROFESSIONAL DEVELOPMENT FOR VET TEACHERS AND TRAINERS IN TURKEY JULIAN STANLEY, ETF ISTANBUL, FEBRUARY 2016 INTRODUCE

Detaylı

Delta Pulse 3 Montaj ve Çalıstırma Kılavuzu. www.teknolojiekibi.com

Delta Pulse 3 Montaj ve Çalıstırma Kılavuzu. www.teknolojiekibi.com Delta Pulse 3 Montaj ve Çalıstırma Kılavuzu http:/// Bu kılavuz, montajı eksiksiz olarak yapılmış devrenin kontrolü ve çalıştırılması içindir. İçeriğinde montajı tamamlanmış devrede çalıştırma öncesinde

Detaylı

D-Link DSL 500G için ayarları

D-Link DSL 500G için ayarları Celotex 4016 YAZILIM 80-8080-8081 İLDVR HARDWARE YAZILIM 80-4500-4600 DVR2000 25 FPS YAZILIM 5050-5555-1999-80 EX-3004 YAZILIM 5555 DVR 8008--9808 YAZILIM 80-9000-9001-9002 TE-203 VE TE-20316 SVDVR YAZILIM

Detaylı

A Y I K BOYA SOBA SOBA =? RORO MAYO MAS A A YÖS / TÖBT

A Y I K BOYA SOBA SOBA =? RORO MAYO MAS A A YÖS / TÖBT 00 - YÖS / TÖBT. ve. sorularda, I. gruptaki sözcüklerin harfleri birer rakamla gösterilerek II. gruptaki sayılar elde edilmiştir. Soru işaretiyle belirtilen sözcüğün hangi sayıyla gösterildiğini bulunuz.

Detaylı

EXAMINATION FOR FOREIGN OR OVERSEAS STUDENTS BASIC LEARNING SKILLS TEST GENEL AÇIKLAMA (GENERAL INSTRUCTIONS)

EXAMINATION FOR FOREIGN OR OVERSEAS STUDENTS BASIC LEARNING SKILLS TEST GENEL AÇIKLAMA (GENERAL INSTRUCTIONS) YURTD INDAN VEYA YABANCI UYRUKLU Ö RENC INAVI TEMEL Ö RENME BECER ER TEST EXAMINATION FOR FOREIGN OR OVERSEAS STUDENTS BASIC LEARNING SKILLS TEST 16.05.2015 ADI / NAME : SOYADI / SURNAME : ADAY NO / APPLICANT

Detaylı

Exercise 2 Dialogue(Diyalog)

Exercise 2 Dialogue(Diyalog) Going Home 02: At a Duty-free Shop Hi! How are you today? Today s lesson is about At a Duty-free Shop. Let s make learning English fun! Eve Dönüş 02: Duty-free Satış Mağazasında Exercise 1 Vocabulary and

Detaylı

ACCURACY OF GPS PRECISE POINT POSITIONING (PPP)

ACCURACY OF GPS PRECISE POINT POSITIONING (PPP) i by Simge TEKİÇ B.S., Geodesy and Photogrammetry Engineering Yıldız Technical University, 2006 Submitted to the Kandilli Observatory and Earthquake Research Institute in partial fulfillment of the requirements

Detaylı

Theory of Dimensioning

Theory of Dimensioning Theory of Dimensioning In general, the description of shape and size together gives complete information for producing the object represented. The dimensions put on the drawing are those required for the

Detaylı

ise, genel bir eğilim (trend) gösteriyorsa bu seriye uygun doğru ya da eğriyi bulmaya çalışırız. Trend orta-uzun dönemde her iniş, çokışı

ise, genel bir eğilim (trend) gösteriyorsa bu seriye uygun doğru ya da eğriyi bulmaya çalışırız. Trend orta-uzun dönemde her iniş, çokışı Trend Analizi Eğer zaman serisi i rastgele dağılmış ğ değil ise, genel bir eğilim (trend) gösteriyorsa bu seriye uygun doğru ya da eğriyi bulmaya çalışırız. Trend orta-uzun dönemde her iniş, çokışı yansıtmayacak,

Detaylı

Calacatta Oro

Calacatta Oro Sayfa 1/8 Page 1/8 Müşterinin Adı/Adresi: Customer Name/Adress: Raport No: Report No: KOMMERSAN KOMBASSAN MERMER MADEN İŞLETMELERİ SAN VE TİC. A.Ş Muğla Aydın Karayolu 12. Km Salih Paşalar Mevkii Bayır

Detaylı

MATLAB Semineri. EM 314 Kontrol Sistemleri 1 GÜMMF Elektrik-Elektronik Müh. Bölümü. 30 Nisan / 1 Mayıs 2007

MATLAB Semineri. EM 314 Kontrol Sistemleri 1 GÜMMF Elektrik-Elektronik Müh. Bölümü. 30 Nisan / 1 Mayıs 2007 MATLAB Semineri EM 314 Kontrol Sistemleri 1 GÜMMF Elektrik-Elektronik Müh. Bölümü 30 Nisan / 1 Mayıs 2007 İçerik MATLAB Ekranı Değişkenler Operatörler Akış Kontrolü.m Dosyaları Çizim Komutları Yardım Kontrol

Detaylı

CHAPTER 8: CONFIDENCE INTERVAL ESTIMATION: ONE POPULATION

CHAPTER 8: CONFIDENCE INTERVAL ESTIMATION: ONE POPULATION CHAPTER 8: CONFIDENCE INTERVAL ESTIMATION: ONE POPULATION A point estimator of a population parameter is a function of the sample information that yields a single number An interval estimator of a population

Detaylı

Today...Bugün..Today..Bugün..Today..Bugün..Today..Bugün..Today...

Today...Bugün..Today..Bugün..Today..Bugün..Today..Bugün..Today... Haftanın Koçluk Sorusu: Hayatında tamamen mutlu ve özel bir anı düşün. Ne oluyordu? Bu anı özel yapan neydi? Coaching Question of the week: Think about a very happy and special moment of yours. Can you

Detaylı

NEAR EAST UNIVERSITY

NEAR EAST UNIVERSITY NEAR EAST UNIVERSITY FOOD ENGINEERING DEPARTMENT STAJ PROGRAM DEFTERİ THE SUMMER PRACTICE DIARY ÖĞRENCİNİN STUDENT S SOYADI, ADI :... SURNAME, NAME ÖĞRENİM YILI :... TRAINING YEAR Haftalık Staj Programı

Detaylı

SQL PROGRAMLAMA. Bir batch, bir arada bulunan bir dizi SQL deyimidir. Batch ayıracı GO deyimidir.

SQL PROGRAMLAMA. Bir batch, bir arada bulunan bir dizi SQL deyimidir. Batch ayıracı GO deyimidir. SQL PROGRAMLAMA BATCH Bir batch, bir arada bulunan bir dizi SQL deyimidir. Batch ayıracı deyimidir. SELECT. UPDATE...... DELETE.. BATCH BATCH Özellikleri 1- Bir batch içinde bir deyimde yazım hatası olduğunda

Detaylı

1. FİRMA BİLGİLERİ / COMPANY INFORMATION. Firma Adı Company Name. Firma Adresi Company Address. Telefon / Fax / Phone / Fax /

1. FİRMA BİLGİLERİ / COMPANY INFORMATION. Firma Adı Company Name. Firma Adresi Company Address. Telefon / Fax /  Phone / Fax / ALÜMINYUM UYGULAMALARI BASVURU FORMU 1. FİRMA BİLGİLERİ / COMPANY INFORMATION Firma Adı Company Name Firma Adresi Company Address Telefon / Fax / e-mail Phone / Fax / e-mail Firma Yetkilisi Adı / Ünvanı

Detaylı

UBE Machine Learning. Kaya Oguz

UBE Machine Learning. Kaya Oguz UBE 521 - Machine Learning Kaya Oguz Support Vector Machines How to divide up the space with decision boundaries? 1990s - new compared to other methods. How to make the decision rule to use with this boundary?

Detaylı

SINAV İÇERİĞİ EXAM CONTENT

SINAV İÇERİĞİ EXAM CONTENT SINAV İÇERİĞİ Uluslararası Öğrenci Sınavı, 40 Genel Yetenek 30 Matematik, 10 Geometri sorusunu içeren Temel Öğrenme Becerileri Testinden oluşmaktadır. 4 yanlış cevap bir doğru cevabı götürür. Sınav süresi

Detaylı

PostgreSQL ve PL/pgSQL

PostgreSQL ve PL/pgSQL PostgreSQL ve PL/pgSQL Adnan DURSUN Uygulama tasarım ve geliştiricisi @ : adnandursun.at.asrinbilisim.com.tr : +AdnanDURSUN Sunum Akışı PL/pgSQL nedir PL/pgSQL neden kullanmalıyız PL/pgSQL in yapısı Saklı

Detaylı

ACADEMIC YEAR MEVLANA EXCHANGE PROGRAMME APPLICATIONS

ACADEMIC YEAR MEVLANA EXCHANGE PROGRAMME APPLICATIONS 018-019 ACADEMIC YEAR MEVLANA EXCHANGE PROGRAMME APPLICATIONS Dear Partners, Mevlana Exchange Programme applications have started for 018-019 Academic Year. It would be a great pleasure and honor for us

Detaylı

Kendi ülkelerinde staj yapacak yabancı uyruklu öğrenciler STJ 302 deki belgeleri doldurarak aşağıdaki yolu izlemelidirler.

Kendi ülkelerinde staj yapacak yabancı uyruklu öğrenciler STJ 302 deki belgeleri doldurarak aşağıdaki yolu izlemelidirler. STJ 302 (ECZANE STAJI) YAPACAK ÖĞRENCİLERİN DİKKATİNE! 2013-2014 Bahar Dönemi STJ 302 yi alan öğrenciler aşağıdaki açıklanan şekilde staj başvurularını şahsen yapacaklardır. 1) STJ 302 yi alan öğrenciler,

Detaylı

İYC MADENCİLİK SAN. VE TİC. LTD. ŞTİ. NE AİT MUĞLA - FETHİYE YÖRESİ BEJ TÜRÜ KİREÇTAŞININ FİZİKO-MEKANİK ANALİZ RAPORU

İYC MADENCİLİK SAN. VE TİC. LTD. ŞTİ. NE AİT MUĞLA - FETHİYE YÖRESİ BEJ TÜRÜ KİREÇTAŞININ FİZİKO-MEKANİK ANALİZ RAPORU T.C. PAMUKKALE ÜNİVERSİTESİ MÜHENDİSLİK FAKÜLTESİ PAMUKKALE UNIVERSITY FACULTY OF ENGINEERING İYC MADENCİLİK SAN. VE TİC. LTD. ŞTİ. NE AİT MUĞLA - FETHİYE YÖRESİ BEJ TÜRÜ KİREÇTAŞININ FİZİKO-MEKANİK ANALİZ

Detaylı

STAJ RAPORU TRAINING REPORT

STAJ RAPORU TRAINING REPORT STAJ RAPORU TRAINING REPORT ÖĞRENCİ BİLGİSİ STUDENT INFORMATION ADI VE SOYADI :... NAME AND LASTNAME BÖLÜMÜ :... DEPARTMENT ÖĞRENİM YILI :... TRAINING YEAR Adres/Address: T.C.OKAN ÜNİVERSİTESİ MÜHENDİSLİK

Detaylı