Metodo di Holt-Winters M. Romito 7 dicembre 2016

Size: px
Start display at page:

Download "Metodo di Holt-Winters M. Romito 7 dicembre 2016"

Transcription

1 Metodo di Holt-Winters M. Romito 7 dicembre 2016 Smorzamento esponenziale (SE) e smorzamento esponenziale con trend (SET) auto.data<-read.csv("scheda11.csv",header=false) auto=ts(auto.data,frequency=12,start=c(1995,1)) moto.data<-read.csv("scheda12.csv",header=false) moto=ts(moto.data,frequency=12,start=c(2000,1)) Smorzamento esponenziale Proviamo il metodo di smorzamento esponenziale su una serie con forte trend creata artificiosamente. st=ts((1:100)+10*rnorm(100),frequency=10) se=holtwinters(st,beta=f,gamma=f) se ## Holt-Winters exponential smoothing without trend and without seasonal component. ## ## Call: ## HoltWinters(x = st, beta = F, gamma = F) ## ## Smoothing parameters: ## alpha: ## beta : FALSE ## gamma: FALSE ## ## Coefficients: ## [,1] ## a plot(se) 1

2 predict(se,1) ## Series: ## Start = c(11, 1) ## End = c(11, 1) ## Frequency = 10 ## fit ## [1,] Passiamo a esaminare la serie esempio (esportazione accessori auto), che contiene dati con trend dominante. auto.se=holtwinters(auto,beta=f,gamma=f) auto.se ## Holt-Winters exponential smoothing without trend and without seasonal component. ## ## Call: ## HoltWinters(x = auto, beta = F, gamma = F) ## ## Smoothing parameters: ## alpha: ## beta : FALSE ## gamma: FALSE ## ## Coefficients: ## [,1] ## a

3 plot(auto.se) Proviamo a variare il valore del parametro α. plot(auto.se);points(holtwinters(auto,alpha=0.2,beta=f,gamma=f)$fitted,col="blue",type="l") 3

4 plot(auto.se);points(holtwinters(auto,alpha=0.4,beta=f,gamma=f)$fitted,col="blue",type="l") plot(auto.se);points(holtwinters(auto,alpha=0.6,beta=f,gamma=f)$fitted,col="blue",type="l") 4

5 plot(auto.se);points(holtwinters(auto,alpha=0.8,beta=f,gamma=f)$fitted,col="blue",type="l") plot(auto.se);points(holtwinters(auto,alpha=1,beta=f,gamma=f)$fitted,col="blue",type="l") 5

6 plot(auto.se);points(holtwinters(auto,alpha=0.01,beta=f,gamma=f)$fitted,col="blue",type="l") plot(auto.se);points(holtwinters(auto,alpha=0.05,beta=f,gamma=f)$fitted,col="blue",type="l") 6

7 plot(auto.se);points(holtwinters(auto,alpha=0.10,beta=f,gamma=f)$fitted,col="blue",type="l") plot(auto.se);points(holtwinters(auto,alpha=0.15,beta=f,gamma=f)$fitted,col="blue",type="l") Predizione con smorzamento esponenziale. 7

8 plot(auto.se,predict(auto.se,12)) predict(auto.se,1) ## Jan ## Smorzamento esponenziale con trend auto.set=holtwinters(auto,gamma=f) auto.set ## Holt-Winters exponential smoothing with trend and without seasonal component. ## ## Call: ## HoltWinters(x = auto, gamma = F) ## ## Smoothing parameters: ## alpha: ## beta : ## gamma: FALSE ## ## Coefficients: ## [,1] ## a ## b plot(auto.set) 8

9 Proviamo a variare direttamente i valori dei parametri. Prima alpha, plot(auto.set);points(holtwinters(auto,alpha=0.1,beta=0.3,gamma=f)$fitted,col="blue",type="l") 9

10 plot(auto.set);points(holtwinters(auto,alpha=0.2,beta=0.3,gamma=f)$fitted,col="blue",type="l") plot(auto.set);points(holtwinters(auto,alpha=0.3,beta=0.3,gamma=f)$fitted,col="blue",type="l") 10

11 plot(auto.set);points(holtwinters(auto,alpha=0.4,beta=0.3,gamma=f)$fitted,col="blue",type="l") plot(auto.set);points(holtwinters(auto,alpha=0.5,beta=0.3,gamma=f)$fitted,col="blue",type="l") poi β, 11

12 plot(auto.set);points(holtwinters(auto,alpha=0.3,beta=0.1,gamma=f)$fitted,col="blue",type="l") plot(auto.set);points(holtwinters(auto,alpha=0.3,beta=0.2,gamma=f)$fitted,col="blue",type="l") 12

13 plot(auto.set);points(holtwinters(auto,alpha=0.3,beta=0.3,gamma=f)$fitted,col="blue",type="l") plot(auto.set);points(holtwinters(auto,alpha=0.3,beta=0.4,gamma=f)$fitted,col="blue",type="l") 13

14 plot(auto.set);points(holtwinters(auto,alpha=0.3,beta=0.5,gamma=f)$fitted,col="blue",type="l") Riaggiustiamo la condizione iniziale. Ricordiamo che l.start è la intercetta iniziale, e b.start è la pendenza iniziale. plot(holtwinters(auto,gamma=f,l.start=auto[1,1])) 14

15 plot(holtwinters(auto,gamma=f,l.start=auto[1,1],b.start=0)) plot(holtwinters(auto,gamma=f,l.start=auto[2,1],b.start=100)) 15

16 plot(holtwinters(auto,gamma=f,l.start=6500,b.start=2)) Calcoliamo la predizione 16

17 plot(auto.set,predict(auto.set,12)) predict(auto.set,3) ## Jan Feb Mar ## Previsione con SE, SET Quale metodo prevede meglio? Confrontiamo le predizioni dei metodi di smorzamento esponenziale senza/con trend. auto.end=window(auto,2007) auto.se.pt=predict(auto.se,6) auto.set.pt=predict(auto.set,6) plot(c(auto.end,auto.se.pt),col="red") points(c(auto.end,auto.set.pt),type="b",col="blue") 17

18 c(auto.end, auto.se.pt) Index Possiamo applicare i due metodi di smorzamento al trend ottenuto attraverso la decomposizione della serie. auto.d=decompose(auto) auto.se.t=holtwinters(na.exclude(auto.d$trend),beta=f,gamma=f) auto.set.t=holtwinters(na.exclude(auto.d$trend),gamma=f) plot(auto.se.t)

19 plot(auto.set.t) Esercizio: migliorare SET variando α, β a mano Confrontiamo le previsioni. auto.d.end=na.exclude(auto.d$trend)[140:156] pt.se.t=predict(auto.se.t,6) pt.set.t=predict(auto.set.t,6) plot(c(auto.d.end,pt.se.t),type="b",col="red") points(c(auto.d.end,pt.set.t),type="b",col="blue") points(auto.d.end,type="b") 19

20 c(auto.d.end, pt.se.t) Index Serie stagionali con SE, SET Passiamo ad esaminare serie con carattere stagionale. Con SE. st=ts(sin(1:100)+0.2*rnorm(100),frequency=10) se=holtwinters(st,beta=f,gamma=f) plot(se)

21 predict(se,1) ## Series: ## Start = c(11, 1) ## End = c(11, 1) ## Frequency = 10 ## fit ## [1,] sin(101) ## [1] Con SET. set=holtwinters(st,gamma=f) plot(set) predict(set,1) ## Series: ## Start = c(11, 1) ## End = c(11, 1) ## Frequency = 10 ## fit ## [1,] sin(101) ## [1] Esercizio: esempio artificioso con trend e stagionalità 21

22 Esaminiamo la serie delle esportazioni moto (serie con carattere stagionale) Sia SE che SET sono fedeli alla serie senza catturare il trend. moto.se=holtwinters(moto,beta=f,gamma=f) plot(moto.se) moto.set=holtwinters(moto,gamma=f) plot(moto.set) 22

23 Per catturare il trend, proviamo ad aggiustare la condizione iniziale. plot(holtwinters(moto,gamma=f,l.start=moto[1,1]))

24 plot(holtwinters(moto,gamma=f,l.start=moto[2,1])) plot(holtwinters(moto,gamma=f,b.start=-51))

25 plot(holtwinters(moto,gamma=f,b.start=-4,l.start=120)) Esercizio: trovare parametri α, β più opportuni per catturare il trend. 25

Modelling trend: Part 1

Modelling trend: Part 1 Modelling trend: Part 1 Beáta Stehlíková Exponential smoothing Exponential smoothing We have the data x 1,... x n and we want to (1) smooth them and (2) make predictions Firstly we assume that there is

More information

04MAC03/03/01/001 RIMADIMA an INTERREG III B CADSES NP, An EU-funded project managed by the European Agency for Reconstruction

04MAC03/03/01/001 RIMADIMA an INTERREG III B CADSES NP, An EU-funded project managed by the European Agency for Reconstruction 04MAC03/03/01/001 RIMADIMA an INTERREG III B CADSES NP, RIMADIMA Risk-, Disaster-Management & prevention of natural hazards in mountainous and/or forested regions WP-Nr.:4 Action-nr.: 4.4, 4.5 Journal

More information

Automatic Creation of Define.xml for ADaM

Automatic Creation of Define.xml for ADaM Automatic Creation of Define.xml for ADaM Alessia Sacco, Statistical Programmer www.valos.it info@valos.it 1 Indice Define.xml Pinnacle 21 Community Valos ADaM Metadata 2 Define.xml Cos è: Case Report

More information

SARFIRE X-SAR SEGMENTATION AND MOISTURE MODELING ROME, JULY 14 TH 2011

SARFIRE X-SAR SEGMENTATION AND MOISTURE MODELING ROME, JULY 14 TH 2011 SARFIRE: Spaceborn SAR imagery and environmental data fusion for the dinamic evaluation of land regions susceptibility to fire (CSK AO E-2288) SARFIRE X-SAR SEGMENTATION AND MOISTURE MODELING ROME, JULY

More information

Chapter 9 Formattazione Input/Output

Chapter 9 Formattazione Input/Output 1 Chapter 9 Formattazione Input/Output 2 Flussi 9.2 Flussi Sequenze di caratteri organizzate in linee Ogni linea consiste di zero o più caratteri e finisce con il carattere newline Lo standard ANSI C deve

More information

Anomaly detection for NFSen/nfdump netflow engine - with Holt-Winters algorithm

Anomaly detection for NFSen/nfdump netflow engine - with Holt-Winters algorithm Anomaly detection for NFSen/nfdump netflow engine - with Holt-Winters algorithm János Mohácsi, Gábor Kiss NIIF/HUNGARNET Motivation Usual work of CSIRT teams: Find abnormal behaviour Visual detection of

More information

GESTIONE DEL BACKGROUND. Programmazione Web 1

GESTIONE DEL BACKGROUND. Programmazione Web 1 GESTIONE DEL BACKGROUND Programmazione Web 1 Background background-color opacity Immagini nel background background-image background-repeat background-posi:on background-a;achment Programmazione Web 2

More information

Computer challenges guillotine: how an artificial player can solve a complex language TV game with web data analysis

Computer challenges guillotine: how an artificial player can solve a complex language TV game with web data analysis Computer challenges guillotine: how an artificial player can solve a complex language TV game with web data analysis Luca Squadrone University TorVergata Rome, Italy luca.squadrone@yahoo.it Abstract English.

More information

Programmi di utilità

Programmi di utilità Programmi di utilità La classe SystemData per il calcolo dei tempi e della occupazione di memoria Per calcolare i tempi e la occupazione di memoria è necessario interagire con il sistema operativo, questo

More information

MEGA. Project number: IST GEM EyesWeb WK4 Tools software contributions to the MEGA SE. GEMWK4 Library, v

MEGA. Project number: IST GEM EyesWeb WK4 Tools software contributions to the MEGA SE. GEMWK4 Library, v WP4/6 May 2001 MEGA Project number: IST-1999-20410 GEM EyesWeb WK4 Tools software contributions to the MEGA SE GEMWK4 Library, v. 1.0 http:www.generalmusic.com Contact: Carlo Drioli drioli@dei.unipd.it

More information

Esempio con Google Play tore Example with Google Play tore

Esempio con Google Play tore Example with Google Play tore Guida all installazione ed uso dell App VR Tour Camerata Picena Per installare l App occorre aprire lo Store del vostro smartphone (Play Store o App Store) e cercare l App con parola chiave Camerata Picena.

More information

VHDL Packages. I Packages incapsulano elementi che possono essere condivisi tra più entity Un package consiste di due parti:

VHDL Packages. I Packages incapsulano elementi che possono essere condivisi tra più entity Un package consiste di due parti: 1 VHDL Packages I Packages incapsulano elementi che possono essere condivisi tra più entity Un package consiste di due parti: Declaration Dichiarazione di tutti gli elementi contenuti nel package Body

More information

Programmazione avanzata con ecos

Programmazione avanzata con ecos Programmazione avanzata con ecos Giovanni Perbellini Agenda Aggiunta di un device driver all interno di ecos Modifica del repository Progettazione driver per il controllo di un contatore Modifica della

More information

Fondamenti di Informatica

Fondamenti di Informatica Fondamenti di Informatica Getting started with Matlab and basic concept of programming Prof. Emiliano Casalicchio http://www.ce.uniroma2.it/courses/foi/ Avvisi n L esame sarà in lingua italiana n L esame

More information

PfR Performance Routing. Massimiliano Sbaraglia

PfR Performance Routing. Massimiliano Sbaraglia PfR Performance Routing Massimiliano Sbaraglia PfR advantage PfR abilita i processi di routing su base best path (non più su prefix-destination) basandosi su definite policy; PfR potenzia i tradizionali

More information

GAF Geography-informed Energy Conservation for Ad Hoc Routing

GAF Geography-informed Energy Conservation for Ad Hoc Routing GAF Geography-informed Energy Conservation for Ad Hoc Routing Ya Xu, John Heidemann, Deborah Estrin USC/ISI, UCLA Energy? Node Density Node Redundancy in Ad Hoc Routing GAF: Geographic Adaptive Fidelity

More information

Fondamenti di Informatica C. Lezione 24: Dentro le applet

Fondamenti di Informatica C. Lezione 24: Dentro le applet Fondamenti di Informatica C Lezione 24: Dentro le applet 22-11-2004 Il commento iniziale /* --------------------------------------------------- This applet creates a few different user interface components

More information

TECHNOLOGY. Roberto Corso. Territory Manager NW - Italy. 6 Giugno 2017

TECHNOLOGY. Roberto Corso. Territory Manager NW - Italy. 6 Giugno 2017 TECHNOLOGY Roberto Corso Territory Manager NW - Italy 6 Giugno 2017 "You can't solve a problem on the same level that it was created. You have to rise above it to the next level." - Albert Einstein Innovation

More information

Canali e accessori per impianti di condizionamento Ducts and fittings for air conditioning systems

Canali e accessori per impianti di condizionamento Ducts and fittings for air conditioning systems Canali e accessori per impianti di condizionamento Ducts and fittings for air conditioning systems Caratteristiche tecniche Technical features Imballaggio accessori Accessories packaging Certificazioni

More information

SUSE: always ON per i tuoi ambienti SAP

SUSE: always ON per i tuoi ambienti SAP SUSE: always ON per i tuoi ambienti SAP HPE Reimagine 2018 Carlo Baffè Sales Manager, SUSE Italia carlo.baffe@suse.com 2015 SUSE LLC. All Rights Reserved. Agenda Infrastruttura e trasformazione digitale

More information

Valmoro. Catalogo Catalogue ACCESSORI PER CELLULARI PHONE ACCESSORIES. Made in Italy

Valmoro. Catalogo Catalogue ACCESSORI PER CELLULARI PHONE ACCESSORIES. Made in Italy ACCESSORI PER CELLULARI PHONE ACCESSORIES Catalogo Catalogue Made in Italy VALMORO Plasmato dal tempo, dal sole, dalla natura aspra e dai venti della Sardegna che lo sferzano, lo temprano e lo rendono

More information

for large-sized and heavy pieces, are used washing booths provided with a oscillating table and rotating ramps.

for large-sized and heavy pieces, are used washing booths provided with a oscillating table and rotating ramps. TAVOLA OSCILLANTE Per pezzi di grandi dimensioni e peso, si utilizzano cabine di lavaggio con tavola oscillante e rampe rotanti. Questo sistema consente di ottenere macchine con portata superiore a 80.000

More information

Dept. of Electrical, Computer and Biomedical Engineering. Measuring the common emitter current gain β in a bipolar junction transistor

Dept. of Electrical, Computer and Biomedical Engineering. Measuring the common emitter current gain β in a bipolar junction transistor Dept. of Electrical, Computer and Biomedical Engineering Measuring the common emitter current gain β in a bipolar junction transistor Measuring β I C I E IB I E I B I C β ( I C,V CE )= I C I B 2 Purpose

More information

Simplification and Refinement

Simplification and Refinement Simplification and Refinement Paolo Cignoni p.cignoni@isti.cnr.it http://vcg.isti.cnr.it/~cignoni Approximating surfaces with triangle meshes Managing the quantity of geometry vs the quality of the representation

More information

google adwords guida F511591EE4389B71B65D236A6F16B219 Google Adwords Guida 1 / 6

google adwords guida F511591EE4389B71B65D236A6F16B219 Google Adwords Guida 1 / 6 Google Adwords Guida 1 / 6 2 / 6 3 / 6 Google Adwords Guida La tua guida a Google Ads Nozioni di base di Google Ads Creare annunci e campagne Scegliere dove e quando pubblicare gli annunci Come scoprire

More information

FREE STANDING LEAFLET DISPLAY

FREE STANDING LEAFLET DISPLAY esempio 1 model 1 esempio 2 model 2 Geniale sistema modulare per la realizzazione di svariate soluzioni espositive per utilizzo interno. Caratteristica principale è il profilo in alluminio centrale che

More information

Solving Tridiagonal Systems on the T3E: a Message Passing RD algorithm.

Solving Tridiagonal Systems on the T3E: a Message Passing RD algorithm. Solving Tridiagonal Systems on the T3E: a Message Passing RD algorithm. A. Bevilacqua Dipartimento di Fisica, Università di Bologna INFN, Sezione di Bologna G. Spaletta Dipartimento di Matematica, Università

More information

Fabrizio Villa INAF / IASF Bologna

Fabrizio Villa INAF / IASF Bologna Fabrizio Villa INAF / IASF Bologna villa@iasfbo.inaf.it Directivity 54.09 dbi % DEP 0.29 FWHM 23.09 arcmin e 1.41 Spill-over 0.16% Legge di Snell Angolo di incidenza = angolo di riflessione Principio di

More information

A general method for parameter estimation of averaging models

A general method for parameter estimation of averaging models Teorie & Modelli, n.s., XII, 1-2, 2007 (000-000) A general method for parameter estimation of averaging models Giulio Vidotto & Marco Vicentini * (Padua) Averaging models have been proposed within the

More information

MW MOC SUPPORTING AND TROUBLESHOOTING WINDOWS 10

MW MOC SUPPORTING AND TROUBLESHOOTING WINDOWS 10 MW10-3 - MOC 10982 - SUPPORTING AND TROUBLESHOOTING WINDOWS 10 Categoria: Windows 10 INFORMAZIONI SUL CORSO Durata: Categoria: Qualifica Istruttore: Dedicato a: Produttore: 5 Giorni Windows 10 Microsoft

More information

MWS3-3 - MOC NETWORKING WITH WINDOWS SERVER 2016

MWS3-3 - MOC NETWORKING WITH WINDOWS SERVER 2016 MWS3-3 - MOC 20741 - NETWORKING WITH WINDOWS SERVER 2016 Categoria: Windows Server 2016 INFORMAZIONI SUL CORSO Durata: Categoria: Qualifica Istruttore: Dedicato a: Produttore: 5,00000 Giorni Windows Server

More information

MW MOC INSTALLING AND CONFIGURING WINDOWS 10

MW MOC INSTALLING AND CONFIGURING WINDOWS 10 MW10-4 - MOC 20698 - INSTALLING AND CONFIGURING WINDOWS 10 Categoria: Windows 10 INFORMAZIONI SUL CORSO Durata: Categoria: Qualifica Istruttore: Dedicato a: Produttore: 5 Giorni Windows 10 Microsoft Certified

More information

Istruzioni passo passo per creare qualsiasi CUSTOM AWARD con BBLogger How to create step by step any CUSTOM AWARD by BBLogger

Istruzioni passo passo per creare qualsiasi CUSTOM AWARD con BBLogger How to create step by step any CUSTOM AWARD by BBLogger Istruzioni passo passo per creare qualsiasi CUSTOM AWARD con BBLogger How to create step by step any CUSTOM AWARD by BBLogger Aprire l applicazione e con il mouse andare sul pulsante custom award e cliccarci

More information

SAFE DESIGNED IN ITALY CASSEFORTI PER HOTEL HOTEL SAFES

SAFE DESIGNED IN ITALY CASSEFORTI PER HOTEL HOTEL SAFES DESIGNED IN ITALY CASSEFORTI PER HOTEL HOTEL S : I MODELLI : MODELS TOP OPEN DRAWER Innovativa tastiera touch e display led integrato nella porta New touch keypad and stealthy LED display L apertura dall

More information

Professional qualifications:

Professional qualifications: Professional qualifications: a CILIP perspective MARGARET WATSON Certificazione delle competenze: il punto di vista del CILIP CILIP [Chartered Institute of Library and Information Professionals] è la più

More information

The Future of Business Depends on Software Defined Storage (SDS) How SSDs can fit into and accelerate an SDS strategy

The Future of Business Depends on Software Defined Storage (SDS) How SSDs can fit into and accelerate an SDS strategy The Future of Business Depends on Software Defined Storage (SDS) Table of contents Introduction (Italian) 2 An Overview of SDS 3 Achieving the Goals of SDS Hinges on Smart Hardware Decisions 5 Assessing

More information

EMS_ _Command_GenericOutput_ModbusTable_LG_EN_v1.00.xlsx

EMS_ _Command_GenericOutput_ModbusTable_LG_EN_v1.00.xlsx GENERAL MODBUS TABLE ORGANIZATION Starting of the Group s Starting of the Group s System Version (Release) System Version (Build) Group Name (Text) Group Code Group Complexity Group Version 4352 1100 01

More information

Unconventional and Optimized Surface-Wave Acquitision and Analysis

Unconventional and Optimized Surface-Wave Acquitision and Analysis Unconventional and Optimized Surface-Wave Acquitision and Analysis giancarlo dal moro gdm@winmasw.com Keywords: Seismic data, data acquisition, MASW, multi-component MASW, Full Velocity Spectrum (FVS)

More information

MOC10215 Implementing and Managing Server Virtualization

MOC10215 Implementing and Managing Server Virtualization Tel. +39 02 365738 info@overneteducation.it www.overneteducation.it MOC10215 Implementing and Managing Server Virtualization Durata: 4.5 gg Descrizione Questo corso fornisce le competenze e le conoscenze

More information

INFORMATICA INDUSTRIALE

INFORMATICA INDUSTRIALE INFORMATICA INDUSTRIALE Lezione 2 Prof. Christian Forlani forlani@disco.unimib.it Tutor: Stefano Brusamolino brusamolino@ira.disco.unimib.it Device Structure: Core» Oscillator» Reset» Architecture» CPU

More information

MOC20741 Networking with Windows Server 2016

MOC20741 Networking with Windows Server 2016 Tel. +39 02 365738 info@overneteducation.it www.overneteducation.it MOC20741 Networking with Windows Server 2016 Durata: 4.5 gg Descrizione Questo corso intende trasmettere le competenze fondamentali in

More information

ANALISI DELLE CORRISPONDENZE IN R

ANALISI DELLE CORRISPONDENZE IN R ANALISI DELLE CORRISPONDENZE IN R Un esempio I dati sono tratti da un'indagine ISTAT Aspetti della vita quotidiana condotta a febbraio 2010; sono reperibili sul sito http://www.istat.it/it/archivio/36071.

More information

VISTA TL4-4 DIMENSION (MM) Technical features

VISTA TL4-4 DIMENSION (MM) Technical features Automation for telescopic sliding doors for leaf weights up to 2x120Kg and 4x80Kg. Ideal for obtaining maximum useful passage in a limited space, the control unit with programming display allows local

More information

Errore 500 su installazione Phoca Gallery e Phoca Guestbook su Joomla 2.5. Scritto da ventus85 Domenica 12 Agosto :28

Errore 500 su installazione Phoca Gallery e Phoca Guestbook su Joomla 2.5. Scritto da ventus85 Domenica 12 Agosto :28 In questi giorni ho provato a installare le estensioni Phoca Gallery e Phoca Guestbook, più precisamente le ultime rilasciate ad oggi per Joomla 2.5, la 3.2.1 per la prima e la 2.0.5 per la seconda. In

More information

FME World Tour InlineQuerier. Fabrizio Di Vittorio. Friburgo,

FME World Tour InlineQuerier. Fabrizio Di Vittorio. Friburgo, FME World Tour 2015 InlineQuerier Friburgo, 12.06.2015 Fabrizio Di Vittorio Repubblica e Cantone Ticino Dipartimento delle finanze e dell economia Divisione delle risorse CSI - Centro sistemi informativi

More information

Generatore di parità. LIBRARY ieee; USE ieee.std_logic_1164.all ; ENTITY xor2 IS PORT( A, B : in std_logic ; Y : out std_logic ) ; END xor2 ;

Generatore di parità. LIBRARY ieee; USE ieee.std_logic_1164.all ; ENTITY xor2 IS PORT( A, B : in std_logic ; Y : out std_logic ) ; END xor2 ; LIBRARY ieee; USE ieee.std_logic_1164.all ; ENTITY xor2 IS PORT( A, B : in std_logic ; Y : out std_logic ) ; END xor2 ; ARCHITECTURE arch1 OF Xor2 IS BEGIN Y

More information

SAFE. DESIGNED in italy CASSEFORTI PER HOTEL HOTEL SAFES

SAFE. DESIGNED in italy CASSEFORTI PER HOTEL HOTEL SAFES SAFE DESIGNED in italy CASSEFORTI PER HOTEL HOTEL SAFES SAFE TOP OPEN SAFE DRAWER Innovativo sistema touch e display led integrato nella porta attivabile con tast New touch keypad and stealthy LED display,

More information

Corso di Elettronica dei Sistemi Programmabili

Corso di Elettronica dei Sistemi Programmabili Corso di Elettronica dei Sistemi Programmabili Sistemi Operativi Real Time freertos implementation Aprile 2014 Stefano Salvatori 1/40 Sommario RTOS tick Execution context Context switch example 2/40 RTOS

More information

Accesso trusted al dato e configurazione dei sistemi informativi per il GDPR

Accesso trusted al dato e configurazione dei sistemi informativi per il GDPR Accesso trusted al dato e configurazione dei sistemi informativi per il GDPR Guglielmo Troiano - Senior Consultant at Digital360 - Senior Advisor at Osservatori Politecnico di Milano Igor Marcolongo -

More information

MSQ3-8 - MOC UPDATING YOUR SQL SERVER SKILLS TO MICROSOFT SQL SERVER 2014

MSQ3-8 - MOC UPDATING YOUR SQL SERVER SKILLS TO MICROSOFT SQL SERVER 2014 MSQ3-8 - MOC 10977 - UPDATING YOUR SQL SERVER SKILLS TO MICROSOFT SQL SERVER 2014 Categoria: SQL Server 2014 e 2012 INFORMAZIONI SUL CORSO Durata: Categoria: Qualifica Istruttore: Dedicato a: Produttore:

More information

zero mario nanni 2004

zero mario nanni 2004 zero mario nanni 2004 corpo illuminante da incasso per interni ed esterni IP67, composto da un corpo cilindrico e una borchia tonda, entrambi in alluminio ossidato opaco. può essere incassato a soffitto,

More information

Cloud. Softlayer - Non tutti i cloud sono uguali: gli elementi differenzianti di Softlayer lo IAAS IBM. Maurilio Manzoni Daniela Zuppini

Cloud. Softlayer - Non tutti i cloud sono uguali: gli elementi differenzianti di Softlayer lo IAAS IBM. Maurilio Manzoni Daniela Zuppini Cloud Softlayer - Non tutti i cloud sono uguali: gli elementi differenzianti di Softlayer lo IAAS IBM Maurilio Manzoni Daniela Zuppini L Hybrid Cloud di IBM si declina per tutti i modelli di delivery Cloud.

More information

getimage getimage Parameters: Returns: See Also:

getimage getimage Parameters: Returns: See Also: Javadoc Input /** * Returns an Image object that can then be painted on the screen. * The url argument must specify an absolute {@link URL. The name * argument is a specifier that is relative to the url

More information

4.5 Minimum Spanning Tree. Minimo albero di copertura o ricoprimento

4.5 Minimum Spanning Tree. Minimo albero di copertura o ricoprimento 4.5 Minimum Spanning Tree Minimo albero di copertura o ricoprimento Minimum Spanning Tree (MST) Minimum spanning tree. Given a connected graph G = (V, E) with real-valued edge weights c e, an MST is a

More information

Uguaglianza e Identità. (no, non avete sbagliato corso )

Uguaglianza e Identità. (no, non avete sbagliato corso ) 1 Uguaglianza e Identità (no, non avete sbagliato corso ) Fondamenti di Java Che vuol dire "uguaglianza"? Che vuol dire "Identità"? Class P class P { int x; int y; public String tostring() { return ("x="+x+"

More information

Classical Planning: Limits

Classical Planning: Limits Classical Planning: Limits Spacecraft Domain Spacecraft Domain Extensions Time Resources Constraints Uncertainty Utility Model Temporal Interval Relations Interval Algebra (aka Allen Algebra) [Allen 83]

More information

Form HTML FORM E PHP. Un insieme di elemen5 in una pagina web con cui l'utente interagisce per inviare informazioni ad uno script

Form HTML FORM E PHP. Un insieme di elemen5 in una pagina web con cui l'utente interagisce per inviare informazioni ad uno script HTML FORM E PHP 2014-2015 Programmazione Web 1 Form Un insieme di elemen5 in una pagina web con cui l'utente interagisce per inviare informazioni ad uno script Realizzazione di due cose la pagina contente

More information

Definizione dei costru'ori

Definizione dei costru'ori Costru'ori Definizione dei costru'ori Se per una classe A non scrivo nessun costru'ore, il sistema automa9camente crea il costru'ore A(); Se invece definisco almeno un costru'ore non void, ad es. A(int

More information

MOC Deploying and Managing Windows 10 Using Enterprise Services

MOC Deploying and Managing Windows 10 Using Enterprise Services Tel. +39 02 365738 info@overneteducation.it www.overneteducation.it MOC20697.2 Deploying and Managing Windows 10 Using Enterprise Services Durata: 4.5 gg Descrizione Questo corso fornisce agli amministratori

More information

MWS3-2 - MOC INSTALLATION, STORAGE AND COMPUTE WITH WINDOWS SERVER 2016

MWS3-2 - MOC INSTALLATION, STORAGE AND COMPUTE WITH WINDOWS SERVER 2016 MWS3-2 - MOC 20740 - INSTALLATION, STORAGE AND COMPUTE WITH WINDOWS SERVER 2016 Categoria: Windows Server 2016 INFORMAZIONI SUL CORSO Durata: Categoria: Qualifica Istruttore: Dedicato a: Produttore: 5

More information

MOC6231 Maintaining a Microsoft SQL Server 2008 Database

MOC6231 Maintaining a Microsoft SQL Server 2008 Database Tel. +39 02 365738 info@overneteducation.it www.overneteducation.it MOC6231 Maintaining a Microsoft SQL Server 2008 Database Durata: 4.5 gg Descrizione Questo corso intende fornire agli allievi le conoscenze

More information

Schema Impianto Elettrico Opel Vivaro

Schema Impianto Elettrico Opel Vivaro We have made it easy for you to find a PDF Ebooks without any digging. And by having access to our ebooks online or by storing it on your computer, you have convenient answers with schema impianto elettrico

More information

Linux e Bash. Matteo Duranti. (cfr.

Linux e Bash. Matteo Duranti. (cfr. Linux e Bash Matteo Duranti matteo.duranti@pg.infn.it (cfr. https://www.uio.no/studier/emner/matnat/ifi/inf3331/h12/bash.pdf) Linux time serve per mostrare le timing statistics di un altro comando/ programma

More information

Representative online study to evaluate the commitments proposed by Google as part of EU competition investigation AT Google Report for Italy

Representative online study to evaluate the commitments proposed by Google as part of EU competition investigation AT Google Report for Italy Representative online study to evaluate the commitments proposed by Google as part of EU competition investigation AT. 39740-Google Report for Italy Study conducted by: Prof. Dr. Dirk Lewandowski Hamburg

More information

Serie Sistema scorrevoleve regolabile o fisso per armadi con ante interne. Adjustable or fixed sliding system for wardrobes with internal doors

Serie Sistema scorrevoleve regolabile o fisso per armadi con ante interne. Adjustable or fixed sliding system for wardrobes with internal doors Serie Sistema scorrevoleve regolabile o fisso per armadi con ante interne Adjustable or fixed sliding system for wardrobes with internal doors , 1 1 1, 4 1 1 11, 4 4 4 4 4 4 Posizione binari Rails position

More information

PROGRAMMAZIONE AVANZATA JAVA E C

PROGRAMMAZIONE AVANZATA JAVA E C PROGRAMMAZIONE AVANZATA JAVA E C Massimiliano Redolfi Lezione 10: multithreads, continue ThreadUtils public class ThreadUtils { public static void stop(executorservice executor) { executor.shutdown();

More information

Tecniche di Progettazione: Design Patterns

Tecniche di Progettazione: Design Patterns Tecniche di Progettazione: Design Patterns GoF: Decorator 1 Decorator Intent Attach additional responsibilities to an object dynamically. Decorators provide a flexible alternative to subclassing for extending

More information

Tecniche di Progettazione: Design Patterns

Tecniche di Progettazione: Design Patterns Tecniche di Progettazione: Design Patterns GoF: Decorator 1 An example 2 Your first idea of implementation 3 In reality 4 Now a beverage can be mixed from different condiment to form a new beverage 5 6

More information

Implementazione Java di Alberi Binari. A.A. 16/17 DA1 - Andrea Pietracaprina 1

Implementazione Java di Alberi Binari. A.A. 16/17 DA1 - Andrea Pietracaprina 1 Implementazione Java di Alberi Binari A.A. 16/17 DA1 - Andrea Pietracaprina 1 Idea: struttura linkata Un nodo contiene Element Parent node Left child node Right child node B B A D A D C E C E A.A. 16/17

More information

EVF 300 series is a range of controllers with elegant design for the management of different typologies of top-class electric ovens.

EVF 300 series is a range of controllers with elegant design for the management of different typologies of top-class electric ovens. EVF 300 series Compatibile con C o n t r o l l e r s f o r top-class electric rotisserie, bread and pizza ovens, with touch-keys, in split version and which can be integrated into the unit EVF 300 series

More information

Corso: Installing and Configuring Windows 10 Codice PCSNET: MW10-4 Cod. Vendor: Durata: 5

Corso: Installing and Configuring Windows 10 Codice PCSNET: MW10-4 Cod. Vendor: Durata: 5 Corso: Installing and Configuring Windows 10 Codice PCSNET: MW10-4 Cod. Vendor: 20698 Durata: 5 Obiettivi Pianificare, installare e aggiornare a Windows 10. Eseguire la configurazione post-installazione.

More information

Ingegneria del Software T. XML Programming

Ingegneria del Software T. XML Programming Ingegneria del Software T XML Programming An in-memory representation of an XML document The DOM allows you to programmatically Load Modify Save an XML document 2 carson

More information

Chapter 5 Data Link Layer

Chapter 5 Data Link Layer Chapter 5 Data Link Layer Reti di Elaboratori Corso di Laurea in Informatica Università degli Studi di Roma La Sapienza Canale A-L Prof.ssa Chiara Petrioli Parte di queste slide sono state prese dal materiale

More information

La mia esperienza relativa alle soluzioni di discovery Il punto di vista di una Biblioteca

La mia esperienza relativa alle soluzioni di discovery Il punto di vista di una Biblioteca La mia esperienza relativa alle soluzioni di discovery Il punto di vista di una Biblioteca Ezio Tarantino SBS Sistema Bibliotecario Sapienza Come migliorare l esperienza degli utenti: Discovery, ebooks,

More information

cornice vetro trasparente frame transparent glass

cornice vetro trasparente frame transparent glass m mario nanni 99 corpo illuminante -proiettore da incasso carrabile per interni ed esterni in lega di alluminio peraluman con grado di protezione IP7 IK0 (0 joules). disponibile con vetro sabbiato o trasparente,

More information

Draft Rosen Multicast. Massimiliano Sbaraglia

Draft Rosen Multicast. Massimiliano Sbaraglia Draft Rosen Multicast Massimiliano Sbaraglia MDT Draft Rosen layer 3 Multicast VPN Consiste in una VPN multicast con PIM (Protocol Indipendent Multicast) configurato sia all interno della VPN stessa che

More information

Company Profile 2017

Company Profile 2017 Company Profile 2017 Industrial integrated IoT Solution Provider Leading network attached storage provider Unique Electronic Manufacturing Service Intelligent Medical System Provider Leading Automation

More information

Classwork 1 A computer code for computing basic hydraulic quantities for free surface flow in a rectangular cross section

Classwork 1 A computer code for computing basic hydraulic quantities for free surface flow in a rectangular cross section Classwork 1 A computer code for computing basic hydraulic quantities for free surface flow in a rectangular cross section Why classwork 1? In this classwork we propose students to make acquaintance with

More information

DS LBT 20494

DS LBT 20494 Mod. 1160 DS 1160-008 LBT 20494 CITOFONO VIVAVOCE IP IP HAND-FREE DOOR PHONE INTERPHONE MAINS-LIBRES IP INTERFONO MANOS LIBRES IP SPRECHANLAGE MIT FREISPRECHSYSTEM IP HANDSFREE DEURTELEFOON IP Sch./Ref.1160/3

More information

Architettura Database Oracle

Architettura Database Oracle Architettura Database Oracle Shared Pool La shared pool consiste di: Data dictionary: cache che contiene informazioni relative agli oggetti del databse, lo storage ed i privilegi Library cache: contiene

More information

APPLICATION MANUAL EK-CC2-TP EK-CD2-TP

APPLICATION MANUAL EK-CC2-TP EK-CD2-TP APPLICATION MANUAL EK-CC2-TP EK-CD2-TP UNIVERSAL INTERFACE 2 4 DIN 2 _4 Out Led Pag. 1 Summary 1 Scope of the document...4 2 Product description...4 2.1 Input functions...5 2.2 Led Output...5 2.3 Connection

More information

Release Notes for April StatCrunch Updates

Release Notes for April StatCrunch Updates Release Notes for April 2018 - StatCrunch Updates Major additions Introducing accessibility features that support full keyboard functionality including new keyboard shortcuts. [Go to page 2] Measures to

More information

CORSO MOC10215: Implementing and Managing Microsoft Server Virtualization. CEGEKA Education corsi di formazione professionale

CORSO MOC10215: Implementing and Managing Microsoft Server Virtualization. CEGEKA Education corsi di formazione professionale CORSO MOC10215: Implementing and Managing Microsoft Server Virtualization CEGEKA Education corsi di formazione professionale Implementing and Managing Microsoft Server Virtualization This five-day, instructor-led

More information

Corso di Laurea in Ingegneria delle Telecomunicazioni. Corso di Misure Elettroniche per le Telecomunicazioni II

Corso di Laurea in Ingegneria delle Telecomunicazioni. Corso di Misure Elettroniche per le Telecomunicazioni II Corso di Laurea in Ingegneria delle Telecomunicazioni Corso di Misure Elettroniche per le Telecomunicazioni II Progettazione e testing di un trasmettitore W-CDMA Emulare un segnale W-CDMA con l ausilio

More information

PROGRAMMAZIONE AVANZATA JAVA E C

PROGRAMMAZIONE AVANZATA JAVA E C PROGRAMMAZIONE AVANZATA JAVA E C Massimiliano Redolfi Lezione 12: networks with Java TCP vs UDP https://docs.oracle.com/javase/tutorial/networking/overview/networking.html TCP vs UDP TCP (Transmission

More information

VISTA SL-2 DIMENSION (MM) Technical features

VISTA SL-2 DIMENSION (MM) Technical features Complete range of automation systems for sliding pedestrian doors with a maximum leaf weight of 150 kg. The control unit, with a programming display and microprocessor technology, makes it possible to

More information

Larte Di Buttare Come Liberarsi Delle Cose Senza Sensi Di Colpa

Larte Di Buttare Come Liberarsi Delle Cose Senza Sensi Di Colpa Larte Di Buttare Come Liberarsi Delle Cose Senza Sensi Di Colpa We have made it easy for you to find a PDF Ebooks without any digging. And by having access to our ebooks online or by storing it on your

More information

Laboratorio di Sistemi Software Design Patterns 2

Laboratorio di Sistemi Software Design Patterns 2 TITLE Laboratorio di Sistemi Software Design Patterns 2 Luca Padovani (A-L) Riccardo Solmi (M-Z) 1 Indice degli argomenti Tipi di Design Patterns Creazionali, strutturali, comportamentali Design Patterns

More information

COGNOME NOME MATRICOLA

COGNOME NOME MATRICOLA CORSO Architectures for Multimedia Systems - Code: 078650 (073335) - Prof. C. SILVANO Prova del 3 settembre 2010 COGNOME NOME MATRICOLA EMAIL EXERCISE 1 - PIPELINE Given the following loop expressed in

More information

SPATH WHEELS 2015 catalogue/catalogo

SPATH WHEELS 2015 catalogue/catalogo SPATH WHEELS 2015 catalogue/catalogo SPATH WHEELS 2015 catalogue/catalogo 100% made in italy Spath Wheels è il risultato di un esperienza ultra ventennale nella progettazione e nella costruzione di cerchi

More information

Chapter 8: Deadlocks. The Deadlock Problem

Chapter 8: Deadlocks. The Deadlock Problem Chapter 8: Deadlocks System Model Deadlock Characterization Methods for Handling Deadlocks Deadlock Prevention Deadlock Avoidance Deadlock Detection Recovery from Deadlock Combined Approach to Deadlock

More information

Classwork 1 A computer code for computing basic hydraulic quantities for free surface flow in a rectangular cross section

Classwork 1 A computer code for computing basic hydraulic quantities for free surface flow in a rectangular cross section Classwork 1 A computer code for computing basic hydraulic quantities for free surface flow in a rectangular cross section Why classwork 1? In this classwork we propose students to make acquaintance with

More information

FDA : Ensuring data integrity is an important component of industry s

FDA : Ensuring data integrity is an important component of industry s DATA INTEGRITY & BPL M. M. Brunetti, RTC SpA, email: mercebr@rtc.it, Pomezia 26 ottobre 2017 a marzo 2015 MHRA emette una Guidance su DI (GMP) a Settembre 2015 WHO emette una draft Guidance on good data

More information

CORSO MOC : Administering System Center Configuration Manager. CEGEKA Education corsi di formazione professionale

CORSO MOC : Administering System Center Configuration Manager. CEGEKA Education corsi di formazione professionale CORSO MOC20703-1: Administering System Center Configuration Manager CEGEKA Education corsi di formazione professionale Administering System Center Configuration Manager This five-day course describes how

More information

Catalogo Accessori Accessories Catalogue

Catalogo Accessori Accessories Catalogue Catalogo Accessori Accessories Catalogue ACCESSORI OPZIONALI DISPONIBILI SU RICHIESTA OPTIONAL ACCESSORIES AVAILABLE ON REQUEST Canè S.p.A. Medical Technology Via Cuorgnè 42/a 10098 Rivoli (TO) Italy Tel.+39

More information

Evoluzione dell UTM a difesa del modello cloud ibrido

Evoluzione dell UTM a difesa del modello cloud ibrido 1 Evoluzione dell UTM a difesa del modello cloud ibrido Emilio Tonelli Sr. Sales Engineer - Italy Copyright 2016 WatchGuard Technologies, Inc. All Rights Reserved 2 Agenda Le minacce informatiche/cloud

More information

Energy EfficientSleepMode

Energy EfficientSleepMode Energy EfficientSleepMode Management forcellularnetworks Simone Morosi, Pierpaolo Piunti, Enrico Del Re University of Florence - CNIT ETSI Workshop on Energy Efficiency 20-21 June 2012, Genoa, Italy Outline

More information

CORSO MOC6418: Deploying Windows Server CEGEKA Education corsi di formazione professionale

CORSO MOC6418: Deploying Windows Server CEGEKA Education corsi di formazione professionale CORSO MOC6418: Deploying Windows Server 2008 CEGEKA Education corsi di formazione professionale Deploying Windows Server 2008 This course will provide you with the knowledge and skills to install and deploy

More information

Axcor Wash 300. User Menu 09/2018. Note: Default parameters Highlighted in grey. Main Menu Level 1 Level 2 Level 3 Choices / Values

Axcor Wash 300. User Menu 09/2018. Note: Default parameters Highlighted in grey. Main Menu Level 1 Level 2 Level 3 Choices / Values Axcor Wash 300 User Menu 09/2018 Note: Default parameters Highlighted in grey. Main Menu Level 1 Level 2 Level 3 Choices / Values 1 SET UP DMX Address 001-497 IP address byte 1 000-255 Custom IP Address

More information

Computational Physics Laboratory Python scripting

Computational Physics Laboratory Python scripting 10/03/18 Computational Physics Laboratory scripting LECTURE 5 PRACTICE ON SCRIPTING Outline Practice on exam tests 1 Open the file Put its content in a string Close the file Loop on i: Modify the string

More information