Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R.

Size: px
Start display at page:

Download "Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R."

Transcription

1 R version ( ) Copyright (C) 2011 The R Foundation for Statistical Computing ISBN Platform: x86_64-pc-mingw32/x64 (64-bit) R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. [Previously saved workspace restored] > rm(list=ls()) > ls() character(0) > setwd("d:/vjezbe4") > getwd() [1] "D:/Vjezbe4" > # 1.Učitajmo podatke iz datoteke podaci.dat i spremimo podatke koji se odnose na Etrušćane u vektor etr: > podaci<-read.table("podaci.dat") > podaci V1 V

2 > etr<-podaci[,1] > # 2.Izračunajmo duljinu, minimalan i maksimalan element, te raspon uzorka: > n_etr<-length(etr) > n_etr [1] 70 > min_etr<-min(etr) > min_etr [1] 126 > max_etr<-max(etr) > max_etr [1] 158 > d_etr<-max_etr-min_etr 2

3 > d_etr [1] 32 > # 3.Nacrtajmo histogram apsolutnih frekvencija sa 11 razreda: > prva<-min_etr-0.5 > k<-11 > d_etr/k [1] > c<-3 > gr_etr<-numeric(12) > gr_etr [1] > for (i in 1:(k+1)){ + gr_etr[i]<-prva+(i-1)*c} > gr_etr [1] > sr_etr<-numeric(k) > for (i in 1:k){ + sr_etr[i]<-(gr_etr[i]+gr_etr[i+1])/2} > sr_etr [1] > fr_etr<-numeric(11) > for (i in 1:n_etr){ + for(j in 1:k){ + if (etr[i]>=gr_etr[j] && etr[i]<gr_etr[j+1]){ + fr_etr[j]<-fr_etr[j]+1 > fr_etr [1] > sum(fr_etr) [1] 70 > barplot(fr_etr,names.arg=sr_etr,space=c(0.0)) > # 4.Uz pretpostavku da uzorak dolazi iz normalne distribucije, procijenimo parametre µ i sigma: > mikapica_etr<-mean(etr) > sigmakapica_etr<-sd(etr) > mikapica_etr [1] > sigmakapica_etr [1] > # 5.Testirajmo Pearsonovim hi-kvadrat testom hipotezu o pripadnosti podataka normalnoj distribuciji. Izračunajmo prvo vjerojatnosti p_i, te ih popravimo tako da ukupna suma bude 1: > p_etr<-numeric(k) > for (i in 1:k){ + p_etr[i]<-pnorm(gr_etr[i+1],mikapica_etr,sigmakapica_etr)- pnorm(gr_etr[i],mikapica_etr,sigmakapica_etr) > p_etr [1] [7] > sum(p_etr) 3

4 [1] > p_etr[1]<-pnorm(gr_etr[2],mikapica_etr,sigmakapica_etr) > p_etr[k]<-1-pnorm(gr_etr[k],mikapica_etr,sigmakapica_etr) > p_etr [1] [7] > sum(p_etr) [1] 1 > # 6.Izračunajmo očekivane frekvencije i grupirajmo razrede tako da sve očekivane frekvencije budu barem 5: > ofr_etr<-n_etr*p_etr > ofr_etr [1] [7] > ofrnove_etr<-c(sum(ofr_etr[1:4]),ofr_etr[5:8],sum(ofr_etr [9:11])) > ofrnove_etr [1] > # 7.Izračunajmo nove opažene frekvencije uz istu grupaciju razreda i odredimo novi broj razreda: > frnove_etr<-c(sum(fr_etr[1:4]),fr_etr[5:8],sum(fr_etr [9:11])) > frnove_etr [1] > knovi_etr<-length(ofrnove_etr) > knovi_etr [1] 6 > # 8.Izračunajmo realizaciju test statistike H, broj stupnjeva slobode i P-vrijednost testa: > h_etr<-crossprod((frnove_etr-ofrnove_etr)^2,ofrnove_etr^(- 1)) > h_etr [,1] [1,] > df_etr<-knovi_etr-2-1 > df_etr [1] 3 > pv_etr<-1-pchisq(h_etr,df_etr) > pv_etr [,1] [1,] > # 9.Odredimo kritično podrucje za razinu znacajnosti 0.05: > alpha<-0.05 > cv_etr<-qchisq(1-alpha,df_etr) > cv_etr [1] > # Kritično područje je [7,814728,+inf>. Budući da je < , zaključujemo da podaci ne podržavaju odbacivanje nul hipoteze na razini značajnosti od > # 10.Na temelju uzorka, procijenimo 95% pouzdani interval za očekivanje: > t<-qt(1-alpha/2,n_etr-1) > t 4

5 [1] > mikapica_u<-mikapica_etr+(t*sigmakapica_etr)/sqrt(n_etr) > mikapica_l<-mikapica_etr-(t*sigmakapica_etr)/sqrt(n_etr) > mikapica_u [1] > mikapica_l [1] > # Dakle, procjena 95% pouzdanog intervala za očekivanje je [ , ] > # 11.Na temelju uzorka, procijenimo 95% pouzdani interval za varijancu: > c2<-qchisq(1-alpha/2,n_etr-1) > c1<-qchisq(alpha/2,n_etr-1) > varkapica_u<-((n_etr-1)/c1)*(sigmakapica_etr^2) > varkapica_l<-((n_etr-1)/c2)*(sigmakapica_etr^2) > varkapica_u [1] > varkapica_l [1] > # Dakle, procjena 95% pouzdanog intervala za varijancu je [ , ] > # 12.Na temelju uzorka, procijenimo 95% pouzdani interval za standardnu devijaciju: > sigmakapica_u<-sqrt(varkapica_u) > sigmakapica_<-sqrt(varkapica_l) > sigmakapica_l<-sqrt(varkapica_l) > sigmakapica_u [1] > sigmakapica_l [1] > # Dakle, procjena 95% pouzdanog intervala za standardnu devijaciju je [ , ] > # 13.Spremimo podatke koji se odnose na Talijane u vektor tal i ponovimo sve napravljeno na tim podacima: > # 14.U radnom direktoriju definirajmo funkcije f_p(p) i g_p (p) (za funkcije f_p i g_p uzmite da su n=11 i t=4, kako je u zadatku zadano): > bin<-function(n,k){ + if (k==0) + var<-1 + else + var<-((n-k+1)/k)*bin(n,k-1) > koef<-numeric(5) > for (i in 1:5) + { + koef[i]<-bin(11,i-1)} > koef [1] > f_p<-function(p){ + suma<-(1-p)^11+11*p*(1-p)^10+55*p^2*(1-p)^9+165*p^3*(1-p)^8+ 330*p^4*(1-p)^7} > g_p<-function(p){ + suma<-1-((1-p)^11+11*p*(1-p)^10+55*p^2*(1-p)^9+165*p^3*(1-p) ^8)} > # 15.Provjerimo jesu li ovako definirane funkcije f_p i g_p injekcije: 5

6 > D(expression((1-p)^11+11*p*(1-p)^10+55*p^2*(1-p)^9+165*p^3* (1-p)^8+330*p^4*(1-p)^7),'p') 11 * (1 - p)^10-11 * p * (10 * (1 - p)^9) - 11 * (1 - p)^10 + (55 * (2 * p) * (1 - p)^9-55 * p^2 * (9 * (1 - p)^8)) + (165 * (3 * p^2) * (1 - p)^8-165 * p^3 * (8 * (1 - p)^ 7)) + (330 * (4 * p^3) * (1 - p)^7-330 * p^4 * (7 * (1 - p)^ 6)) > derf_p<-function(p){ + 11 * (1 - p)^10-11 * p * (10 * (1 - p)^9) - 11 * (1 - p)^ (55 * (2 * p) * (1 - p)^9-55 * p^2 * (9 * (1 - p)^8)) + + (165 * (3 * p^2) * (1 - p)^8-165 * p^3 * (8 * (1 - p)^ 7)) + + (330 * (4 * p^3) * (1 - p)^7-330 * p^4 * (7 * (1 - p)^ 6)) > curve(derf_p,0,1) > D(expression(1-((1-p)^11+11*p*(1-p)^10+55*p^2*(1-p)^9+165*p^ 3*(1-p)^8)),'p') -(11 * (1 - p)^10-11 * p * (10 * (1 - p)^9) - 11 * (1 - p)^ 10 + (55 * (2 * p) * (1 - p)^9-55 * p^2 * (9 * (1 - p)^8)) + (165 * (3 * p^2) * (1 - p)^8-165 * p^3 * (8 * (1 - p)^ 7))) > derg_p<-function(p){ + -(11 * (1 - p)^10-11 * p * (10 * (1 - p)^9) - 11 * (1 - p) ^ (55 * (2 * p) * (1 - p)^9-55 * p^2 * (9 * (1 - p)^8)) + + (165 * (3 * p^2) * (1 - p)^8-165 * p^3 * (8 * (1 - p)^ 7)))} > curve(derg_p,0,1) > # Za p iz (0,1) je derivacija od f_p strogo negativna, pa f_p strogo pada, a derivacija od g_p je strogo pozitivna, pa g_p strogo raste. Dakle, f_p i g_p su injekcije na (0,1). > # 16.Procijenimo 90% pouzdani interval za parametar p: > f_ppom<-function(p){ + suma<-(1-p)^11+11*p*(1-p)^10+55*p^2*(1-p)^9+165*p^3*(1-p)^8+ 330*p^4*(1-p)^7-0.1/2} > rj1<-uniroot(f_ppom,c(0.0,1.0))$root > rj1 [1] > g_ppom<-function(p){ + suma<-1-((1-p)^11+11*p*(1-p)^10+55*p^2*(1-p)^9+165*p^3*(1-p) ^8)-0.1/2} > rj2<-uniroot(g_ppom,c(0.0,1.0))$root > rj2 [1] > # Budući su f_p i g_p injekcije na (0,1), onda gornje jednadžbe imaju jedinstveno rješenje i Dakle procjena 90% pouzdanog intervala za p je [ , ] > 6

R version ( ) Copyright (C) 2010 The R Foundation for Statistical Computing ISBN

R version ( ) Copyright (C) 2010 The R Foundation for Statistical Computing ISBN Math 3070 1. Treibergs Railway Example: Power of One Sample t-test Name: Example May 25, 2011 The power of a t-test is described by the operation characteristic curves of Table A.17 in Devore. It is also

More information

R version ( ) Copyright (C) 2009 The R Foundation for Statistical Computing ISBN

R version ( ) Copyright (C) 2009 The R Foundation for Statistical Computing ISBN Math 3070 1. Treibergs County Data: Histograms with variable Class Widths. Name: Example June 1, 2011 Data File Used in this Analysis: # Math 3070-1 County populations Treibergs # # Source: C Goodall,

More information

STA 250: Statistics Lab 1

STA 250: Statistics Lab 1 STA 250: Statistics Lab 1 This lab work is intended to be an introduction to the software R. What follows is a description of the basic functionalities of R, along with a series of tasks that ou d have

More information

1 The SAS System 23:01 Friday, November 9, 2012

1 The SAS System 23:01 Friday, November 9, 2012 2101f12HW9chickwts.log Saved: Wednesday, November 14, 2012 6:50:49 PM Page 1 of 3 1 The SAS System 23:01 Friday, November 9, 2012 NOTE: Copyright (c) 2002-2010 by SAS Institute Inc., Cary, NC, USA. NOTE:

More information

A (very) brief introduction to R

A (very) brief introduction to R A (very) brief introduction to R You typically start R at the command line prompt in a command line interface (CLI) mode. It is not a graphical user interface (GUI) although there are some efforts to produce

More information

TUTORIAL for using the web interface

TUTORIAL for using the web interface Progression Analysis of Disease PAD web tool for the paper *: Topology based data analysis identifies a subgroup of breast cancers with a unique mutational profile and excellent survival M.Nicolau, A.Levine,

More information

S Basics. Statistics 135. Autumn Copyright c 2005 by Mark E. Irwin

S Basics. Statistics 135. Autumn Copyright c 2005 by Mark E. Irwin S Basics Statistics 135 Autumn 2005 Copyright c 2005 by Mark E. Irwin S Basics When discussing the S environment, I will, or at least try to, make the following distinctions. S will be used when what is

More information

VB komande. Programiranje 1

VB komande. Programiranje 1 VB komande Programiranje 1 Zadatak 1: Sastaviti program koji se sastoji iz jedne ListBox kontrole, jedne Textbox kontrole i dva komandna dugmeta. Klikom na prvo komandno dugme umeće se u ListBox sadržaj

More information

Programiranje Programski jezik C. Sadržaj. Datoteke. prof.dr.sc. Ivo Ipšić 2009/2010

Programiranje Programski jezik C. Sadržaj. Datoteke. prof.dr.sc. Ivo Ipšić 2009/2010 Programiranje Programski jezik C prof.dr.sc. Ivo Ipšić 2009/2010 Sadržaj Ulazno-izlazne funkcije Datoteke Formatirane datoteke Funkcije za rad s datotekama Primjeri Datoteke komunikacija između programa

More information

The Very Basics of the R Interpreter

The Very Basics of the R Interpreter Chapter 2 The Very Basics of the R Interpreter OK, the computer is fired up. We have R installed. It is time to get started. 1. Start R by double-clicking on the R desktop icon. 2. Alternatively, open

More information

Uputa: Zabranjeno je koristiti bilo kakva pomagala. Rje²enja pi²ete desno od zadatka. Predajete samo ovaj list.

Uputa: Zabranjeno je koristiti bilo kakva pomagala. Rje²enja pi²ete desno od zadatka. Predajete samo ovaj list. Ime i prezime: Asistent: Predava : Programiranje (C) 1. kolokvij 14. 4. 2003. 1. 2. 3. 4. 5. 6. 7. Uputa: Zabranjeno je koristiti bilo kakva pomagala. Rje²enja pi²ete desno od zadatka. Predajete samo ovaj

More information

Uvod u relacione baze podataka

Uvod u relacione baze podataka Uvod u relacione baze podataka Ana Spasić 5. čas 1 Podupiti, operatori exists i in 1. Izdvojiti imena i prezimena studenata koji su položili predmet čiji je identifikator 2001. Rešenje korišćenjem spajanja

More information

Statistical Data Analysis: R Tutorial

Statistical Data Analysis: R Tutorial 1 August 29, 2012 Statistical Data Analysis: R Tutorial Dr A. J. Bevan, Contents 1 Getting started 1 2 Basic calculations 2 3 More advanced calulations 3 4 Plotting data 4 5 The quantmod package 5 1 Getting

More information

Getting Started with R

Getting Started with R Getting Started with R STAT 133 Gaston Sanchez Department of Statistics, UC Berkeley gastonsanchez.com github.com/gastonstat/stat133 Course web: gastonsanchez.com/stat133 Tool Some of you may have used

More information

Extremely short introduction to R Jean-Yves Sgro Feb 20, 2018

Extremely short introduction to R Jean-Yves Sgro Feb 20, 2018 Extremely short introduction to R Jean-Yves Sgro Feb 20, 2018 Contents 1 Suggested ahead activities 1 2 Introduction to R 2 2.1 Learning Objectives......................................... 2 3 Starting

More information

Učitati cio broj n i štampati njegovu recipročnu vrijednost. Ako je učitan broj 0, štampati 1/0.

Učitati cio broj n i štampati njegovu recipročnu vrijednost. Ako je učitan broj 0, štampati 1/0. Kontrolne naredbe Primjeri: Opšti oblik razgranate strukture (if sa ) if (uslov) Naredba 1 ili blok naredbi1 Naredba 2 ili blok naredbi2 Učitati broj x i štampati vrijednost double x, z; Scanner in=new

More information

b) program deljiv3; uses wincrt; var i:integer; begin i:=3; while i<100 do begin write(i:5); i:=i+3; end; end.

b) program deljiv3; uses wincrt; var i:integer; begin i:=3; while i<100 do begin write(i:5); i:=i+3; end; end. NAREDBA CIKLUSA SA PREDUSLOVOM WHILE 1.Odrediti vrednosti s i p nakon izvrsenja sledecih naredbi za dato a=43, a=34, a=105 program p1; var a,s,p:integer; write('unesite a:');readln(a); p:=a; s:=0; while

More information

Binarne hrpe. Strukture podataka i algoritmi VJEŽBE 26. siječnja / 133

Binarne hrpe. Strukture podataka i algoritmi VJEŽBE 26. siječnja / 133 Binarne hrpe Potpuno binarno stablo binarno stablo u kojem svaki čvor koji nije list ima točno 2 nasljednika. Binarna hrpa potpuno binarno stablo u kojem svaki čvor koji nije list ima veću ključnu vrijednost

More information

UNIVERZITET U BEOGRADU ELEKTROTEHNIČKI FAKULTET

UNIVERZITET U BEOGRADU ELEKTROTEHNIČKI FAKULTET UNIVERZITET U BEOGRADU ELEKTROTEHNIČKI FAKULTET Katedra za elektroniku Računarska elektronika Grupa br. 11 Projekat br. 8 Studenti: Stefan Vukašinović 466/2013 Jelena Urošević 99/2013 Tekst projekta :

More information

Osnove programskog jezika C# Čas 5. Delegati, događaji i interfejsi

Osnove programskog jezika C# Čas 5. Delegati, događaji i interfejsi Osnove programskog jezika C# Čas 5. Delegati, događaji i interfejsi DELEGATI Bezbedni pokazivači na funkcije Jer garantuju vrednost deklarisanog tipa. Prevodilac prijavljuje grešku ako pokušate da povežete

More information

pojedinačnom elementu niza se pristupa imeniza[indeks] indeks od 0 do n-1

pojedinačnom elementu niza se pristupa imeniza[indeks] indeks od 0 do n-1 NIZOVI Niz deklarišemo navođenjemtipa elemenata za kojim sledi par srednjih zagrada[] i naziv niza. Ako je niz višedimenzionalni između zagrada[] se navode zarezi, čiji je broj za jedan manji od dimenzija

More information

Uputstva za instaliranje čitača Datalogic Skorpio u operativnom sistemu Windows 7 i višim POM-NA-XX-46, V3.0

Uputstva za instaliranje čitača Datalogic Skorpio u operativnom sistemu Windows 7 i višim POM-NA-XX-46, V3.0 POM - Pomoć korisnicima Uputstva za instaliranje čitača Datalogic Skorpio u operativnom sistemu Windows 7 i višim POM-NA-XX-46, V3.0 IZUM, 2016 COBISS, COMARC, COBIB, COLIB, IZUM su zaštićeni znaci u posedu

More information

Informacioni sistemi i baze podataka

Informacioni sistemi i baze podataka Fakultet tehničkih nauka, Novi Sad Predmet: Informacioni sistemi i baze podataka Dr Slavica Kordić Milanka Bjelica Vojislav Đukić Rad u učionici (1/2) Baze podataka (db2015): Studentska korisnička šema

More information

VRIJEDNOSTI ATRIBUTA

VRIJEDNOSTI ATRIBUTA VRIJEDNOSTI ATRIBUTA Svaki atribut (bilo da je primarni ključ, vanjski ključ ili običan atribut) može i ne mora imati ograničenja na svojim vrijednostima. Neka od ograničenja nad atributima: Null / Not

More information

Računarske osnove Interneta (SI3ROI, IR4ROI)

Računarske osnove Interneta (SI3ROI, IR4ROI) Računarske osnove terneta (SI3ROI, IR4ROI) Vežbe MPLS Predavač: 08.11.2011. Dražen Drašković, drazen.draskovic@etf.rs Autori: Dražen Drašković Naučili ste na predavanjima MPLS (Multi-Protocol Label Switching)

More information

Mašinska vizija. Dr Nenad Jovičić tnt.etf.rs/~mv

Mašinska vizija. Dr Nenad Jovičić tnt.etf.rs/~mv Mašinska vizija Dr Nenad Jovičić 2017. tnt.etf.rs/~mv Linearne 2D geometrijske transformacije 2D geometrijske transformacije Pretpostavka: Objekti u 2D prostoru se sastoje iz tačaka i linija. Svaka tačka

More information

namespace spojneice { public partial class Form1 : Form { public Form1() { InitializeComponent(); }

namespace spojneice { public partial class Form1 : Form { public Form1() { InitializeComponent(); } Spojnice using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.IO;

More information

Proširena stvarnost - Augmented Reality (AR) Dr Nenad Gligorić

Proširena stvarnost - Augmented Reality (AR) Dr Nenad Gligorić Proširena stvarnost - Augmented Reality (AR) Dr Nenad Gligorić Šta je Augmented Reality? Termin Augmented Reality prvi put se pominje 1990 od strane istraživača u Boingu Augmented Rality su nazivali aplikaciju

More information

QGIS Application - Bug report #7643 Empty console Output on R, under SEXTANTE

QGIS Application - Bug report #7643 Empty console Output on R, under SEXTANTE QGIS Application - Bug report #7643 Empty console Output on R, under SEXTANTE 2013-04-18 08:18 AM - Joana Simoes Status: Closed Priority: Normal Assignee: Victor Olaya Category: Processing/Core Affected

More information

... ; ako je a n parno. ; ako je a n neparno

... ; ako je a n parno. ; ako je a n neparno Zadaci vezani za ciklus sa preduslovom (WHILE) Zad. Napisati program za izračunavanje n_tog stepena broja a. Zad2. Napisati program za izračunavanje sume S kvadrata parnih i kubova neparnih prirodnih brojeva

More information

x y = z Zadaci - procedure

x y = z Zadaci - procedure Zadaci - procedure Zad1. Data je kvadratna meta u koordinatnom sistemu sa koordinatama A(0,0), B(1,0), C(1,1), D(0,1). Sastaviti proceduru Gadjanje koja će odrediti broj poena na sledeći način: ako je

More information

PVC Eco. Eco Prozori i Balkonska Vrata Bela Boja Dezeni drveta su 40% skuplji

PVC Eco. Eco Prozori i Balkonska Vrata Bela Boja Dezeni drveta su 40% skuplji PVC Eco Eco Prozori i Balkonska Vrata PVC prozori i Balkonska vrata od 5-komornik profilanemačkog proizvođača Trocal 70.A5 Niskoemisiono 2-slojno staklo 4+16+4mm, proizvođaća Guardian iz Luxemburga Profil:

More information

Installing and running R

Installing and running R Installing and running R The R website: http://www.r-project.org/ R on the web here you can find information on the software, download the current version R-2.9.2 (released on 2009-08-24), packages, tutorials

More information

Sigurnost u Windows 7. Saša Kranjac MCT

Sigurnost u Windows 7. Saša Kranjac MCT Sigurnost u Windows 7 Saša Kranjac MCT Agenda Stara, dobra*, (ne)sigurna vremena Novo (i bolje) u Windows 7 Sigurnosna poboljšanja i značajke + DEMO Što nam dolazi u Windows 8? OS podjela (08/2011) 40

More information

VHDLPrimeri Poglavlje5.doc

VHDLPrimeri Poglavlje5.doc 5. VHDL opis kola koja obavljaju osnovne aritmetičke funkcije Sabirači Jednobitni potpuni sabirač definisan je tablicom istinitosti iz Tabele 5.1. Tabela 5.1. cin a b sum cout 0 0 0 0 0 0 0 1 1 0 0 1 0

More information

Implementing Demography by Preston et al. (2001) as an R package

Implementing Demography by Preston et al. (2001) as an R package Implementing Demography by Preston et al. (2001) as an R package ROLAND RAU University of Rostock, Summer Term 2014 07 April 2014 c Roland Rau Demography in R 1 / 24 Goal of the Seminar: Demographic Methods

More information

PVC Eco. Eco Prozori i Balkonska Vrata Bela Boja Dezeni drveta su 40% skuplji

PVC Eco. Eco Prozori i Balkonska Vrata Bela Boja Dezeni drveta su 40% skuplji PVC Eco Eco Prozori i Balkonska Vrata Bela Boja Dezeni drveta su 40% skuplji PVC prozori i Balkonska vrata od 5-komornik profilanemačkog proizvođača Trocal 70.A5 Okovi za PVC stolariju nemačkog proizvođača

More information

Sveučilište u Zagrebu PMF Matematički odsjek. Mreže računala. Vježbe 08. Zvonimir Bujanović Slaven Kožić Vinko Petričević

Sveučilište u Zagrebu PMF Matematički odsjek. Mreže računala. Vježbe 08. Zvonimir Bujanović Slaven Kožić Vinko Petričević Sveučilište u Zagrebu PMF Matematički odsjek Mreže računala Vježbe 08 Zvonimir Bujanović Slaven Kožić Vinko Petričević Uvod: (X)HTML i CSS Na ovim i idućim vježbama naučit ćemo osnove jezika za opisivanje

More information

Microsoftova productivity vizija

Microsoftova productivity vizija Office 365 Microsoftova productivity vizija Hybrid On Premises Online Isto iskustvo na raznim uređajima Lokalno ili cloud Messaging Voice & Video Content Management Enterprise Social Reporting & Analytics

More information

Sadržaj. Verzija 03/2017 Primjenjuje se od 20. novembra godine

Sadržaj. Verzija 03/2017 Primjenjuje se od 20. novembra godine Sadržaj 1 Web hosting 3 2 Registracija domena 3 3 Internet marketing 3 4 E mail paketi 4 5 Virtuoz 4 6 Internet Security servis 5 7 Kolokacija servera 6 8 Cloud usluge 6 9 Aktivni servisi koji nijesu u

More information

Chapter 9 Common R Mistakes

Chapter 9 Common R Mistakes Chapter 9 Common R Mistakes The following addresses avoiding some errors that we see on a regular basis during our R courses. 9.1 Problems Importing Data 9.1.1 Errors in the Source File The code required

More information

Cjenovnik usluga informacionog društva

Cjenovnik usluga informacionog društva Cjenovnik usluga informacionog društva Verzija: 01/2018 Sadržaj 1 Web hosting 3 2 Registracija domena 3 3 Internet marketing 3 4 E mail paketi 4 5 Virtuoz 4 6 Internet Security servis 5 7 Kolokacija servera

More information

Introduction to R for Time Series Analysis Lecture Notes 2

Introduction to R for Time Series Analysis Lecture Notes 2 Introduction to R for Time Series Analysis Lecture Notes 2 1.0 OVERVIEW OF R R is a widely used environment for statistical analysis. The striking difference between R and most other statistical software

More information

var Form1: TForm1; implementation {$R *.dfm} procedure TForm1.Button1Click(Sender: TObject); begin ListBox1.Items.LoadFromFile('d:\brojevi.

var Form1: TForm1; implementation {$R *.dfm} procedure TForm1.Button1Click(Sender: TObject); begin ListBox1.Items.LoadFromFile('d:\brojevi. 1 PANEL komponenta kontejnerska, slična GropBox. Roditeljska komponenta za komp. postavljene na nju. Zajedno se pomeraju. Caption svojstvo za naziv; Alighment pomera svojstvo Caption levo i desno; Align

More information

CREATING THE DISTRIBUTION ANALYSIS

CREATING THE DISTRIBUTION ANALYSIS Chapter 12 Examining Distributions Chapter Table of Contents CREATING THE DISTRIBUTION ANALYSIS...176 BoxPlot...178 Histogram...180 Moments and Quantiles Tables...... 183 ADDING DENSITY ESTIMATES...184

More information

Tema 8: Koncepti i teorije relevantne za donošenje odluka (VEŽBE)

Tema 8: Koncepti i teorije relevantne za donošenje odluka (VEŽBE) Tema 8: Koncepti i teorije relevantne za donošenje odluka (VEŽBE) SISTEMI ZA PODRŠKU ODLUČIVANJU dr Vladislav Miškovic vmiskovic@singidunum.ac.rs Fakultet za računarstvo i informatiku 2013/2014 Tema 8:

More information

Windows Server 2012, VDI Licenciranje najprodavanijeg servera, što je novo, VDI licenciranje. Office 2013 / Office 365

Windows Server 2012, VDI Licenciranje najprodavanijeg servera, što je novo, VDI licenciranje. Office 2013 / Office 365 Windows 8 Licenciranje, razlike u verzijama Windows Server 2012, VDI Licenciranje najprodavanijeg servera, što je novo, VDI licenciranje Serverski proizvodi Server 2012, System centar 2012, SQL 2012, Sharepoint

More information

VDSL modem Zyxel VMG1312-B10A/B30A

VDSL modem Zyxel VMG1312-B10A/B30A VDSL modem Zyxel VMG1312-B10A/B30A Default Login Details LAN IP Address http://192.168.2.1 User Name user Password 1234 Funkcionalnost lampica Power lampica treperi kratko vrijeme nakon uključivanja modema,

More information

for i:=2 to n do if glasovi[i]>max then begin max:=glasovi[i]; k:=i {*promenljiva k ce cuvati indeks takmicara sa najvise glasova *} end;

for i:=2 to n do if glasovi[i]>max then begin max:=glasovi[i]; k:=i {*promenljiva k ce cuvati indeks takmicara sa najvise glasova *} end; {*Na Evroviziji je ucestvovalo n izvodjaca. Koji od njih je osvojio najvise glasova publike?*} program Evrovizija; glasovi:array[1..50] of integer; max,k:integer; writeln('unosi se broj izvodjaca:'); writeln('unose

More information

CREATE DATABASE naziv-baze-podataka [IN naziv-dbspace]

CREATE DATABASE naziv-baze-podataka [IN naziv-dbspace] SQL Vežbe V CREATE DATABASE CREATE DATABASE naziv-baze-podataka [IN naziv-dbspace] [WITH LOG LOG MODE ANSI] [ ON < filespec > [,...n ] ] [ LOG ON < filespec > [,...n ] ] < filespec > ::= ( [ NAME = logical_file_name,

More information

What R is. STAT:5400 (22S:166) Computing in Statistics

What R is. STAT:5400 (22S:166) Computing in Statistics STAT:5400 (22S:166) Computing in Statistics Introduction to R Lecture 5 September 9, 2015 Kate Cowles 374 SH, 335-0727 kate-cowles@uiowa.edu 1 What R is an integrated suite of software facilities for data

More information

/*#include <iostream> // Prvi zadatak sa integralnomg ispita

/*#include <iostream> // Prvi zadatak sa integralnomg ispita /*#include // Prvi zadatak sa integralnomg ispita 27.01.2015 #include using std::setw; using std::cout; const int red(5), kolona(4); void unos(int[]); void ispis(int[][kolona]); float

More information

UPUTSTVO ZA KORIŠĆENJE NOVOG SPINTER WEBMAIL-a

UPUTSTVO ZA KORIŠĆENJE NOVOG SPINTER WEBMAIL-a UPUTSTVO ZA KORIŠĆENJE NOVOG SPINTER WEBMAIL-a Webmail sistem ima podršku za SSL (HTTPS). Korištenjem ovog protokola sva komunikacija između Webmail sistema i vašeg Web čitača je kriptovana. Prilikom pristupa

More information

Numeričke metode i praktikum

Numeričke metode i praktikum Numeričke metode i praktikum Aleksandar Maksimović IRB / 23/03/2006 / Str. 1 vektori Vektor u 3D prostoru. C: int v1[3]; v1[0]=a;v1[1]=b;v1[2]=c; Fortran: INTEGER V1(3) V1(1)=a V1(2)=b V1(3)=c Skalarni

More information

7.1. Redovna datoteka sa slogovima koji se odnose na kupnje i prodaje valuta na tržištu stranih sredstava plaćanja

7.1. Redovna datoteka sa slogovima koji se odnose na kupnje i prodaje valuta na tržištu stranih sredstava plaćanja 7. XSD datoteke za dostavu podataka 7.1. Redovna datoteka sa slogovima koji se odnose na kupnje i prodaje valuta na tržištu stranih sredstava plaćanja

More information

Kada se pokrene forma da bude plave boje. Dugme Crtaj krugove da iscrtava slučajan broj N krugova istog poluprečnika r (1/4 visine forme) čiji su

Kada se pokrene forma da bude plave boje. Dugme Crtaj krugove da iscrtava slučajan broj N krugova istog poluprečnika r (1/4 visine forme) čiji su Kada se pokrene forma da bude plave boje. Dugme Crtaj krugove da iscrtava slučajan broj N krugova istog poluprečnika r (1/4 visine forme) čiji su centri na neiscrtanom krugu poluprečnika r. Dugme Boji

More information

AFMDA Website Privacy Policy

AFMDA Website Privacy Policy A e i a F ie ds of Mage Da id Ado AFMDA has eated this P i a Poli to e plai the types of information we collect through our website and how we will use and protect such information once it is collected.

More information

Programming R. Manuel J. A. Eugster. Chapter 1: Basic Vocabulary. Last modification on April 11, 2012

Programming R. Manuel J. A. Eugster. Chapter 1: Basic Vocabulary. Last modification on April 11, 2012 Manuel J. A. Eugster Programming R Chapter 1: Basic Vocabulary Last modification on April 11, 2012 Draft of the R programming book I always wanted to read http://mjaeugster.github.com/progr Licensed under

More information

Markham J. Geller K The first of the tablets presented here is a bilingual incantation which has one line also found in Utukkū Lemnūtu.

Markham J. Geller K The first of the tablets presented here is a bilingual incantation which has one line also found in Utukkū Lemnūtu. Two Bilingual Incantation Fragments Markham J. Geller It is usually inevitable that while editing a large group of tablets, one comes across fragments which look like they belong to the series with which

More information

Vežbe - XII nedelja PHP Doc

Vežbe - XII nedelja PHP Doc Vežbe - XII nedelja PHP Doc Dražen Drašković, asistent Elektrotehnički fakultet Univerziteta u Beogradu Verzija alata JavaDoc za programski jezik PHP Standard za komentarisanje PHP koda Omogućava generisanje

More information

Variable Neighborhood Descent - VND (Metoda promenljivog spusta)

Variable Neighborhood Descent - VND (Metoda promenljivog spusta) Variable Neighborhood Descent - VND (Metoda promenljivog spusta) Izabrati skup okolina N k, k = 1,..., k max koje će se koristiti za pretragu; Na slučajan način izabrati početno rešenje x X i postaviti

More information

BORIS App Documentation. Release latest

BORIS App Documentation. Release latest BORIS App Documentation Release latest Jul 21, 2017 Contents 1 Legal 3 2 Introduction 5 3 Installation 7 3.1 Install the Kivy Launcher........................................ 7 3.2 Install BORIS App on

More information

Programiranje 1. Školska 2006/2007 godina. Matematički fakultet, Beograd

Programiranje 1. Školska 2006/2007 godina. Matematički fakultet, Beograd Programiranje 1 Beleške sa vežbi Školska 2006/2007 godina Matematički fakultet, Beograd Jelena Tomašević December 12, 2006 2 Sadržaj 1 Programski jezik C 5 1.1 Nizovi osnovni pojmovi................................

More information

Oracle Database Lite Reviewers Guide - Installation 10g (10.3.0) March 2007

Oracle Database Lite Reviewers Guide - Installation 10g (10.3.0) March 2007 Oracle Database Lite Reviewers Guide - Installation 10g (10.3.0) March 2007 Oracle Lite 10g Release 10.3 Reviewers Guide Installation Oracle Universal Welcome screen.. At the Welcome screen, select the

More information

Vodnik skozi Google Analytics Beta verzija 1. del. prehod s stare kode (urchin.js), k novi kodi za sledenje (ga.js)

Vodnik skozi Google Analytics Beta verzija 1. del. prehod s stare kode (urchin.js), k novi kodi za sledenje (ga.js) Vodnik skozi Google Analytics Beta verzija 1. del prehod s stare kode (urchin.js), k novi kodi za sledenje (ga.js) Ta vodnik je povzetek Googe vodiča ' Tracking Code Migration Guide Switching from urchin.js

More information

Visualizing RNA- Seq Differen5al Expression Results with CummeRbund

Visualizing RNA- Seq Differen5al Expression Results with CummeRbund Visualizing RNA- Seq Differen5al Expression Results with CummeRbund 1 RNA- Seq Pipeline The Tuxedo Suite The image cannot be displayed. Your computer may not have enough memory to open the image, or the

More information

Flutter Kasper Lund, Google

Flutter Kasper Lund, Google Flutter Kasper Lund, Google The best way to build for mobile? We need to talk about American politics... The Founding Father Alexander Hamilton's life is now a hip-hop musical... Hamilton! So you have

More information

TABLET VII. Siglum Museum number Plate in George

TABLET VII. Siglum Museum number Plate in George SCORE TRANSLITERATION: SB TABLET VII TABLET VII Siglum Museum number Plate in George Distribution of lines by column Bab. Gilg. Epic NINEVEH E 1 K 2589 92 3 E 2 K 9196 93 E 3 K 11659 92 E 4 K 20013 93

More information

Uvod u programiranje - vežbe. Kontrola toka izvršavanja programa

Uvod u programiranje - vežbe. Kontrola toka izvršavanja programa Uvod u programiranje - vežbe Kontrola toka izvršavanja programa Naredbe za kontrolu toka if, if-else, switch uslovni operator (?:) for, while, do-while break, continue, return if if (uslov) naredba; if

More information

1.264 Lecture 12. HTML Introduction to FrontPage

1.264 Lecture 12. HTML Introduction to FrontPage 1.264 Lecture 12 HTML Introduction to FrontPage HTML Subset of Structured Generalized Markup Language (SGML), a document description language SGML is ISO standard Current version of HTML is version 4.01

More information

I PISMENI ZADATAK III6 I GRUPA IME I PREZIME

I PISMENI ZADATAK III6 I GRUPA IME I PREZIME I PISMENI ZADATAK III6 I GRUPA IME I PREZIME 1.1.Pronaci najveći i najmanji element unete matrice dimenzija n x m i mesto na kome se nalaze. Korististi 2.1. Na osnovu unete matrice A (nxn) celih brojeva

More information

Izrada VI laboratorijske vježbe

Izrada VI laboratorijske vježbe Izrada VI laboratorijske vježbe 1. Programirati proceduru koja se aktivira sa Standard palete alatki klikom na button Fajlovi. Prilikom startovanja procedure prikazuje se forma koja sadrži jedan list box

More information

PREDMET. Osnove Java Programiranja. Čas JAVADOC

PREDMET. Osnove Java Programiranja. Čas JAVADOC PREDMET Osnove Java Programiranja JAVADOC Copyright 2010 UNIVERZITET METROPOLITAN, Beograd. Sva prava zadržana. Bez prethodne pismene dozvole od strane Univerziteta METROPOLITAN zabranjena je reprodukcija,

More information

New Media & Language Technologies Jozef Stefan International Postgraduate School January Speech apps. Jerneja Žganec Gros

New Media & Language Technologies Jozef Stefan International Postgraduate School January Speech apps. Jerneja Žganec Gros New Media & Language Technologies Jozef Stefan International Postgraduate School January 2005 Speech apps Jerneja Žganec Gros jerneja@alpineon.com THE VOICE WEB The voice web offers access to information

More information

PlanesfHyperplaries 1.3. EE Find the scalar equation. the origin. The scalare quation of. These. Let in nnn be a non zero vector in

PlanesfHyperplaries 1.3. EE Find the scalar equation. the origin. The scalare quation of. These. Let in nnn be a non zero vector in 1.3 PlanesfHyperplaries Let in nnn be a non zero vector in IR Consider all vectors I that are orthogonal to rt Ks These vectors form a ft plane passing through the origin sez H L The scalare quation of

More information

Z1. Dati RDF graf predstavljen u JSON-LD sintaksi potrebno je grafički predstaviti u skladu sa RDF notacijom. (5 poena)

Z1. Dati RDF graf predstavljen u JSON-LD sintaksi potrebno je grafički predstaviti u skladu sa RDF notacijom. (5 poena) Z1. Dati RDF graf predstavljen u JSON-LD sintaksi potrebno je grafički predstaviti u skladu sa RDF notacijom. (5 poena) "@context": "http://schema.org", "@type": "JobPosting", @id : http://example.com/person/ab12,

More information

Procjena repa i mjere rizika Bojan Basrak, PMF MO Zagreb. Financijski praktikum 6. travnja 2016.

Procjena repa i mjere rizika Bojan Basrak, PMF MO Zagreb. Financijski praktikum 6. travnja 2016. Procjena repa i mjere rizika Bojan Basrak, PMF MO Zagreb Financijski praktikum 6. travnja 2016. 1 Teški repovi 2 Regularna varijacija regularno varirajući rep x α L(x) 3 x Rep razdiobe F zovemo regularno

More information

Programiranje III razred

Programiranje III razred Tehnička škola 9. maj Bačka Palanka Programiranje III razred Naredbe ciklusa for petlja Naredbe ciklusa Veoma često se ukazuje potreba za ponavljanjem nekih naredbi više puta tj. za ponavljanjem nekog

More information

ANALYSIS OF MAPPING OF GENERAL II DEGREE SURFACES IN COLLINEAR SPACES UDC (045)=111

ANALYSIS OF MAPPING OF GENERAL II DEGREE SURFACES IN COLLINEAR SPACES UDC (045)=111 FACTA UNIVERSITATIS Series: Architecture and Civil Engineering Vol. 8, N o 3, 2010, pp. 317-327 DOI: 10.2298/FUACE1003317K ANALYSIS OF MAPPING OF GENERAL II DEGREE SURFACES IN COLLINEAR SPACES UDC 514.757(045)=111

More information

Lab #9: ANOVA and TUKEY tests

Lab #9: ANOVA and TUKEY tests Lab #9: ANOVA and TUKEY tests Objectives: 1. Column manipulation in SAS 2. Analysis of variance 3. Tukey test 4. Least Significant Difference test 5. Analysis of variance with PROC GLM 6. Levene test for

More information

the star lab introduction to R Day 2 Open R and RWinEdt should follow: we ll need that today.

the star lab introduction to R Day 2 Open R and RWinEdt should follow: we ll need that today. R-WinEdt Open R and RWinEdt should follow: we ll need that today. Cleaning the memory At any one time, R is storing objects in its memory. The fact that everything is an object in R is generally a good

More information

CJENOVNIK OGLAŠAVANJA ZA ROTIRAJUĆE BANNERE NA NASLOVNICI

CJENOVNIK OGLAŠAVANJA ZA ROTIRAJUĆE BANNERE NA NASLOVNICI ZA ROTIRAJUĆE E NA NASLOVNICI ROTIRAJUĆI I / BILLBOARD (90x90px) 2/ BILLBOARD (90x0px) BILLBOARD (90x20px) 0 2 EXPANDING VIDEO (00x600) (00x20px) HALF PAGE (00x600px) 2 PEAL (00x00px) 0 FLOATER (00x00px)

More information

PKI Applet Desktop Application Uputa za instalaciju programske potpore

PKI Applet Desktop Application Uputa za instalaciju programske potpore 1 SADRŽAJ 1. UVOD 3 2. PODRŽANI OPERATIVNI SUSTAVI 3 3. PROGRAMSKI PREDUVJETI ZA INSTALACIJU PROGRAMSKE POTPORE 3 4. INSTALACIJA PROGRAMSKE POTPORE 3 5. DEINSTALACIJA PROGRAMSKE POTPORE 6 2 1. Uvod PKI

More information

Računarska grafika-vežbe. 3 JavaFX animacija i interakcija

Računarska grafika-vežbe. 3 JavaFX animacija i interakcija Računarska grafika-vežbe 3 JavaFX animacija i interakcija Zadatak1: Spirala+ Kolokvijum K1 09/10, zadatak prerađen za JavaFX Napisati klasu koja sastavlja graf scene za crtanje centralno simetrične figure

More information

Chapter 28 Saving and Printing Tables. Chapter Table of Contents SAVING AND PRINTING TABLES AS OUTPUT OBJECTS OUTPUT OBJECTS...

Chapter 28 Saving and Printing Tables. Chapter Table of Contents SAVING AND PRINTING TABLES AS OUTPUT OBJECTS OUTPUT OBJECTS... Chapter 28 Saving and Printing Tables Chapter Table of Contents SAVING AND PRINTING TABLES AS OUTPUT OBJECTS...418 OUTPUT OBJECTS...422 415 Part 2. Introduction 416 Chapter 28 Saving and Printing Tables

More information

Stat 302 Statistical Software and Its Applications Introduction to R

Stat 302 Statistical Software and Its Applications Introduction to R Stat 302 Statistical Software and Its Applications Introduction to R Yen-Chi Chen Department of Statistics, University of Washington Autumn 2016 1 / 23 Statistical Software There are many, many statistical

More information

Aspektno programiranje u Javi. AOP + AspectJ

Aspektno programiranje u Javi. AOP + AspectJ 1 Aspektno programiranje u Javi AOP + AspectJ Posledice nemodularnosti? slabo praćenje toka izvršavanja smanjenja produktivnost smanjen code reuse smanjen krajnji kvalitet celog sistema teško održavanje

More information

IBM Endpoint Manager. Maja Kehić. security

IBM Endpoint Manager. Maja Kehić. security IBM Endpoint Manager Maja Kehić security IBM Endpoint Manager Endpoints Jedinstven agent Desktop / laptop / server endpoint Mobile Purpose specific Jedinstvena konzola Zajednička infrastruktura Jedan server

More information

The NOvA DAQ Monitor System

The NOvA DAQ Monitor System Journal of Physics: Conference Series PAPER OPEN ACCESS The NOvA DAQ Monitor System To cite this article: Michael Baird et al 2015 J. Phys.: Conf. Ser. 664 082020 View the article online for updates and

More information

KREDITI ZA POLJOPRIVREDNIKE

KREDITI ZA POLJOPRIVREDNIKE UNICREDIT BANK SRBIJA AD 11 000 Beograd, Rajićeva 27-29 Telefon: 011/ 3777 888 www.unicreditbank.rs e-mail:office@unicreditgroup.rs KREDITI ZA POLJOPRIVREDNIKE Vlasnik ste ili zakupac 6 hektara obradive

More information

Outline. Topic 16 - Other Remedies. Ridge Regression. Ridge Regression. Ridge Regression. Robust Regression. Regression Trees. Piecewise Linear Model

Outline. Topic 16 - Other Remedies. Ridge Regression. Ridge Regression. Ridge Regression. Robust Regression. Regression Trees. Piecewise Linear Model Topic 16 - Other Remedies Ridge Regression Robust Regression Regression Trees Outline - Fall 2013 Piecewise Linear Model Bootstrapping Topic 16 2 Ridge Regression Modification of least squares that addresses

More information

Stat 302 Statistical Software and Its Applications Introduction to R

Stat 302 Statistical Software and Its Applications Introduction to R Stat 302 Statistical Software and Its Applications Introduction to R Fritz Scholz Department of Statistics, University of Washington Winter Quarter 2015 January 8, 2015 2 Statistical Software There are

More information

BPMone 2.8 Release Notes

BPMone 2.8 Release Notes BPMone 2.8 Release Notes 2012 Perceptive Software Date: 11/7/2012 Version: 2.8 BPMone is a trademark of Lexmark International Technology SA, registered in the U.S. and other countries. Perceptive Software

More information

COSC4201. Prof. Mokhtar Aboelaze York University

COSC4201. Prof. Mokhtar Aboelaze York University COSC4201 Chapter 3 Multi Cycle Operations Prof. Mokhtar Aboelaze York University Based on Slides by Prof. L. Bhuyan (UCR) Prof. M. Shaaban (RTI) 1 Multicycle Operations More than one function unit, each

More information

Adding Applications to the GNOME Software Center

Adding Applications to the GNOME Software Center Adding Applications to the GNOME Software Center Copyright 2016, Richard Hughes, Red Hat Abstract Traditionally we have had little information about Linux applications before they have been installed.

More information

TABLET X. Siglum Museum number Plate in George. z IM (ND 4381) 32 3 i // v variant text, see Chapter 7 ii // vi // XI ?

TABLET X. Siglum Museum number Plate in George. z IM (ND 4381) 32 3 i // v variant text, see Chapter 7 ii // vi // XI ? SCORE TRANSLITERATION: SB TABLET X 1 TABLET X Siglum Museum number Plate in George Distribution of lines by column Bab. Gilg. Epic NINEVEH K 1 K 3382+Rm 621 108 13 K 2 K 8579 109, 111 K 3 K 8589+Sm 1681

More information

Zadaci za Tutorijal 2.

Zadaci za Tutorijal 2. Dr. Željko Jurić: Tehnike programiranja /kroz programski jezik C++/ Tutorijal 2 Zadaci predviđeni za rad na laboratorijskim vježbama uz pomoć tutora Akademska godina 2013/14 Zadaci za Tutorijal 2. NAPOMENA:

More information

TESTING TCP TRAFFIC CONGESTION BY DISTRIBUTED PROTOCOL ANALYSIS AND STATISTICAL MODELLING

TESTING TCP TRAFFIC CONGESTION BY DISTRIBUTED PROTOCOL ANALYSIS AND STATISTICAL MODELLING 59-68 V. Lipovac, V. Batoš, B. Nemšiæ: Testing TCP Traffic Congestion by Distributed Protocol Analysis and Statistical Modelling VLATKO LIPOVAC, Ph.D. E-mail: vlatko.lipovac@unidu.hr VEDRAN BATOŠ, Ph.D.

More information

Microsoft Hyper-V Server 2016 radionica EDU IT Pro, Zagreb,

Microsoft Hyper-V Server 2016 radionica EDU IT Pro, Zagreb, Microsoft Hyper-V Server 2016 radionica EDU IT Pro, Zagreb, 13.04.2017. Podešavanje Hyper-V Servera 2016 za RSAT upravljanje Dario Štefek Lokacije za preuzimanje: Microsoft Hyper-V Server 2016 https://www.microsoft.com/en-us/evalcenter/evaluate-hyper-v-server-2016

More information

Dežurni nastavnik: Kolokvijum traje 1.5 sat, prvih sat vremena nije dozvoljeno napuštanje kolokvijuma. Upotreba literature nije dozvoljena.

Dežurni nastavnik: Kolokvijum traje 1.5 sat, prvih sat vremena nije dozvoljeno napuštanje kolokvijuma. Upotreba literature nije dozvoljena. Dežurni nastavnik: Elektrotehnički fakultet u Beogradu Katedra za računarsku tehniku i informatiku Predmet: Testiranje Softvera (SI3TS) Nastavnik: doc. dr Dragan Bojić Asistent: dipl. ing. Dražen Drašković

More information