Some Linear Algebra. Vectors operations = =(,, ) =( 1 + 2, 1 + 2, ) λ =(λ,λ,λ ) Addition. Scalar multiplication.
|
|
- Kamil Mucha
- 6 lat temu
- Przeglądów:
Transkrypt
1 Basic Geometry
2 Vectors operations Some Linear Algebra Addition + 2 =( 1 + 2, 1 + 2, ) =(,, ) + Scalar multiplication λ =(λ,λ,λ ) Norm =
3 Scalar Product Commutative Linear Orthogonally Norm Some Linear Algebra Orthonormality Normalized vector = = ( + ) = + =0 = =1 = =(,, ) 3
4 Some Linear Algebra Linear Transformation - Matrix Multiplication Do not Commute = =1 Matrix Transpose ( ) = ( ) = Matrix Inverse 1 = 1 = ( ) 1 = 1 1 4
5 Determinants If A is a 2 x 2 matrix then det( )= det(a) = area of parallelogram defined by (a,c) and (b,d) General determinate is defined recursively by minors minors are computed by eliminating the row and column of an entry and computing the determinant on the residue. Few reminders n i j nxn = ij ( 1) + ij j= 1 A a M = = 1 = 1 = 5
6 Cross products The cross product of two vectors V 1 and V 2 is defined (in determinant form) 1 2 = = 1 1 sin( ) Meanings The area of the parallelogram that is defined by V 1 and V 2 The direction of the normal to the plane that is determined by V 1 and V 2 A vector which is orthogonal to both V 1 and V 2 6
7 Cross Product Properties 1 2 = 2 1 V 1 x V 2 Reverse the direction. V = 1 1 sin ( ) α V 1 V 2 x V 1 = -V 1 x V 2 7
8 Right and Left Coordinate Systems Question: What is a positive angle of rotation around an axis specified by a vector? Answer: Align your thumb with the vector. Your other fingers indicate the direction of a positive rotation. Definition: A three-dimensional left (right) coordinate system is such that the positive rotation direction around the Z axis using the left (right) thumb rotates X towards Y. A three-dimensional left coordinate system. A three-dimensional right coordinate system. X Z Z Y X 8 Y
9 Model Coordinate System World Coordinate System View Coordinate System Projection Transform Screen Coordinate System Coordinate Systems 9
10 Model and World Coordinate Systems The model coordinate system is the coordinate system where the object is defined (modeled) Customarily, objects are modeled around the center of axes Why? The world coordinate system is the global coordinate system where all the object reside To move objects from one coordinates system to the other we apply transformations on the object Multiply the vertices of a polygonal object by a proper [4X4] matrix Modeling Transform Demo 10
11 View Coordinate System Coordinate system that is centered on the camera All objects in a scene are either in positive (in front of the camera) or negative (behind) Z Positions the viewing volume in the world. After multiplying objects by the viewing matrix, these objects are transformed from the world coordinate system to the view (camera) coordinate system 11
12 Projection Transform & screen coordinates The location where a 3D object is projected onto a 2D plane (image). There are several options there will be discussed during the lectures Usually it is preferred to consider normalized projected space where the projection transform maps to [-1,1]X[-1,1] square After the projection transform took place, the object is not yet in device coordinate systems. These are the integer values 12
13 The complete pipeline For every vertex V in a polygonal model apply M, the concatenated matrix which contain all the transformations. M = a e i m b f j n c g l o d a' h e' l i' p m' b' f ' j' n' c' g' k' o' d' a'' h' e'' l' i'' p' m'' b'' f '' j'' n'' c'' g'' k'' o'' d'' a` h'' e` l'' i` p'' m` b` f ` j` n` c` g` k` o` d` h` l` p` Modeling Matrix Viewing Matrix Projection Matrix Screen Matrix V ' = V M 13
14 Line equations What are the available forms Explicit form Implicit form Parametric form ( )= + (, )= + + =0 ( )=(1 )
15 Point-Line Distance = 1 2 =(1 ) = = 1 2 =
16 Line-Line Distance ( )=(1 ) ( )=(1 ) The distance between f(t) and g(s) is (, )= ( ) ( ) Minimize (Why and how?) 2 (, ) min (, )= ( 1 1 ) ( 2 1 ) ( 2 1 ) ( 2 1 ) ( 2 1 ) 1 1 What about segment-segment? Need to check end points seperately 16
17 The distance is Point-Plane Distance =0 =( 0, 0, 0 ) =(,, ) = =
18 Collision Detection 18
19 Collision Detection Check if and when moving object will collide Physical simulations Video games Computational geometry Needs to be efficient and accurate Real time Not a stable problem Simpler problem - Collision of Static Primitives Check if two primitives are intersecting Much easier Answer is only yes/no Simple geometry 19
20 Example Line-Line Intersection ( )=(1 ) 1+ 2, 2( )=(1 ) 1+ 2 Find r,t such that 1 ( )=(1 ) 1 + 2,=(1 ) = 2 ( ) Two (why?) linear equations with two variables Question: What is the meaning of r,t < 0 or r,t >1? 20
21 Example Line-Sphere intersection The sphere equation is given by (, 0 )= ( 0 ) 2 +( 0 ) 2 +( 0 ) 2 = 2 Solve a quadratic system of equation If solution exists, there is an intersection Is there a simpler way? Find distance from line to center of sphere If it is less than R, there is an intersection 0 21
22 Linear Operators Definition: A linear operator, L:A B, satisfies the following: L(aX+bY) = al(x) + bl(y) Examples Differentiation D(h(x)) = h (x) D( af( x) + bg( x) ) = D af( x) + D bg x ( ) ( ( )) ( ( )) bd( g( x) ) = ad f x + Scaling S(h(x)) = sh(x) S = = ( af ( x) + bg( x) ) = s( af ( x) + bg( x) ) asf ( x) + bsg( x) as( f( x) ) + bs( g( x) ) Question: Is F(X) = αx+β a linear operation? 22
23 Answer: No!! F ( a X + b Y ) Linear Operators (cont). = α ( a X + b Y ) + β = α ( a X ) + α ( b Y ) + β = a α X + b α Y + β = a ( α X + β ) + b ( α Y + β ) + (1 a b ) β = a F ( X ) + b F ( Y ) + (1 a b ) β Definition: An affine operator, A, satisfies: A(aX+bY) = aa(x) + ba(y), for a+b = 1 Question: Is F(X) = αx+β an affine operation? 23
24 Convexity An object ϑ is convex iff for any two points P,Q ϑ, tp+(1-t)q ϑ, t [0,1]. ϑ tp+ ( 1 t)q P Q The convex hull CH(ϑ), of an object ϑ, is the minimal convex shape C, such that ϑ C. Let P i n i= 1 be n points, and let n, i= 1 n a i= 1 i = 1, a i We say that P= n a P is an affine combination of i= 1 i i n P CH P. For n= 2, P P P. i i= a i C C=CH(ϑ) 0. P i n. i= 1 24 ϑ
25 Curves Let C(t)=[x(t),y(t)] t [T 0,T 1 ] be a continuous univariate parametric curve. The tangent vector is T=C (t): T dc( t) = C t = = dt ( ) x ( t), y ( t) [ ] The unit length tangent vector is T C( t) C(t) may be thought of as the trajectory of a point in time. C (t) is the velocity vector at time t. = C ( t) = [ x ( t), y ( t) ] x ( t) 2 + y ( t) 2 dc T = dt ( t) 25
Helena Boguta, klasa 8W, rok szkolny 2018/2019
Poniższy zbiór zadań został wykonany w ramach projektu Mazowiecki program stypendialny dla uczniów szczególnie uzdolnionych - najlepsza inwestycja w człowieka w roku szkolnym 2018/2019. Składają się na
Hard-Margin Support Vector Machines
Hard-Margin Support Vector Machines aaacaxicbzdlssnafiyn9vbjlepk3ay2gicupasvu4iblxuaw2hjmuwn7ddjjmxm1bkcg1/fjqsvt76fo9/gazqfvn8y+pjpozw5vx8zkpvtfxmlhcwl5zxyqrm2vrg5zw3vxmsoezi4ogkr6phieky5crvvjhriqvdom9l2xxftevuwcekj3lktmhghgniauiyutvrwxtvme34a77kbvg73gtygpjsrfati1+xc8c84bvraowbf+uwnipyehcvmkjrdx46vlykhkgykm3ujjdhcyzqkxy0chur6ax5cbg+1m4bbjptjcubuz4kuhvjoql93hkin5hxtav5x6yyqopnsyuneey5ni4keqrxbar5wqaxbik00icyo/iveiyqqvjo1u4fgzj/8f9x67bzmxnurjzmijtlybwfgcdjgfdtajwgcf2dwaj7ac3g1ho1n4814n7wwjgjmf/ys8fenfycuzq==
Weronika Mysliwiec, klasa 8W, rok szkolny 2018/2019
Poniższy zbiór zadań został wykonany w ramach projektu Mazowiecki program stypendialny dla uczniów szczególnie uzdolnionych - najlepsza inwestycja w człowieka w roku szkolnym 2018/2019. Tresci zadań rozwiązanych
Wyk lad z Algebry Liniowej dla studentów WNE UW. Rok akademicki 2017/2018. Przyk lady zadań na ćwiczenia. 1. Które z cia
Wyk lad z Algebry Liniowej dla studentów WNE UW. Rok akademicki 2017/2018. Przyk lady zadań na ćwiczenia. 1. Które z cia gów: ( 1, 1, 1, 1), (2, 3, 1, 4), (4, 3, 2, 1), (4, 0, 3, 1) sa rozwia 2 zaniami
Machine Learning for Data Science (CS4786) Lecture 11. Spectral Embedding + Clustering
Machine Learning for Data Science (CS4786) Lecture 11 Spectral Embedding + Clustering MOTIVATING EXAMPLE What can you say from this network? MOTIVATING EXAMPLE How about now? THOUGHT EXPERIMENT For each
EXAMPLES OF CABRI GEOMETRE II APPLICATION IN GEOMETRIC SCIENTIFIC RESEARCH
Anna BŁACH Centre of Geometry and Engineering Graphics Silesian University of Technology in Gliwice EXAMPLES OF CABRI GEOMETRE II APPLICATION IN GEOMETRIC SCIENTIFIC RESEARCH Introduction Computer techniques
Machine Learning for Data Science (CS4786) Lecture11. Random Projections & Canonical Correlation Analysis
Machine Learning for Data Science (CS4786) Lecture11 5 Random Projections & Canonical Correlation Analysis The Tall, THE FAT AND THE UGLY n X d The Tall, THE FAT AND THE UGLY d X > n X d n = n d d The
y = The Chain Rule Show all work. No calculator unless otherwise stated. If asked to Explain your answer, write in complete sentences.
The Chain Rule Show all work. No calculator unless otherwise stated. If asked to Eplain your answer, write in complete sentences. 1. Find the derivative of the functions y 7 (b) (a) ( ) y t 1 + t 1 (c)
Lecture 18 Review for Exam 1
Spring, 2019 ME 323 Mechanics of Materials Lecture 18 Review for Exam 1 Reading assignment: HW1-HW5 News: Ready for the exam? Instructor: Prof. Marcial Gonzalez Announcements Exam 1 - Wednesday February
2017 R. Robert Gajewski: Mathcad Prime 4. Solution of examples Rozwiązania przykładów
07 R. Robert Gajewski: Mathcad Prime 4 0. Calculate numerically and present results in different formats and precision. 0. Oblicz numerycznie i przedstaw wyniki w różnych formatach i z różną precyzją.
harmonic functions and the chromatic polynomial
harmonic functions and the chromatic polynomial R. Kenyon (Brown) based on joint work with A. Abrams, W. Lam The chromatic polynomial with n colors. G(n) of a graph G is the number of proper colorings
Camspot 4.4 Camspot 4.5
User manual (addition) Dodatek do instrukcji obsługi Camspot 4.4 Camspot 4.5 1. WiFi configuration 2. Configuration of sending pictures to e-mail/ftp after motion detection 1. Konfiguracja WiFi 2. Konfiguracja
Previously on CSCI 4622
More Naïve Bayes aaace3icbvfba9rafj7ew423vr998obg2gpzkojyh4rcx3ys4lafzbjmjifdototmhoilml+hf/mn3+kl+jkdwtr64gbj+8yl2/ywklhsfircg/dvnp33s796mhdr4+fdj4+o3fvywvorkuqe5zzh0oanjakhwe1ra5zhaf5xvgvn35f62rlvtcyxpnm50awundy1hzwi46jbmgprbtrrvidrg4jre4g07kak+picee6xfgiwvfaltorirucni64eeigkqhpegbwaxglabftpyq4gjbls/hw2ci7tr2xj5ddfmfzwtazj6ubmyddgchbzpf88dmrktfonct6vazputos5zakunhfweow5ukcn+puq8m1ulm7kq+d154pokysx4zgxw4nwq6dw+rcozwnhbuu9et/tgld5cgslazuci1yh1q2ynca/u9ais0kukspulds3xxegvtyfycu8iwk1598e0z2xx/g6ef94ehbpo0d9ok9yiowsvfskh1ix2zcbpsdvaxgww7wj4zdn+he2hogm8xz9s+e7/4cuf/ata==
deep learning for NLP (5 lectures)
TTIC 31210: Advanced Natural Language Processing Kevin Gimpel Spring 2019 Lecture 6: Finish Transformers; Sequence- to- Sequence Modeling and AJenKon 1 Roadmap intro (1 lecture) deep learning for NLP (5
Convolution semigroups with linear Jacobi parameters
Convolution semigroups with linear Jacobi parameters Michael Anshelevich; Wojciech Młotkowski Texas A&M University; University of Wrocław February 14, 2011 Jacobi parameters. µ = measure with finite moments,
MoA-Net: Self-supervised Motion Segmentation. Pia Bideau, Rakesh R Menon, Erik Learned-Miller
MoA-Net: Self-supervised Motion Segmentation Pia Bideau, Rakesh R Menon, Erik Learned-Miller University of Massachusetts Amherst College of Information and Computer Science Motion Segmentation P Bideau,
Teoria i praktyka programowania gier komputerowych
Teoria i praktyka programowania gier komputerowych Piotr Fulma«ski Wydziaª Matematyki i Informatyki, Uniwersytet Šódzki, Polska 2 grudnia 2015 Spis tre±ci 1 Aim of this lecture 2 M view viewport transformation
General Certificate of Education Ordinary Level ADDITIONAL MATHEMATICS 4037/12
UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS General Certificate of Education Ordinary Level www.xtremepapers.com *6378719168* ADDITIONAL MATHEMATICS 4037/12 Paper 1 May/June 2013 2 hours Candidates
Egzamin maturalny z języka angielskiego na poziomie dwujęzycznym Rozmowa wstępna (wyłącznie dla egzaminującego)
112 Informator o egzaminie maturalnym z języka angielskiego od roku szkolnego 2014/2015 2.6.4. Część ustna. Przykładowe zestawy zadań Przykładowe pytania do rozmowy wstępnej Rozmowa wstępna (wyłącznie
SSW1.1, HFW Fry #20, Zeno #25 Benchmark: Qtr.1. Fry #65, Zeno #67. like
SSW1.1, HFW Fry #20, Zeno #25 Benchmark: Qtr.1 I SSW1.1, HFW Fry #65, Zeno #67 Benchmark: Qtr.1 like SSW1.2, HFW Fry #47, Zeno #59 Benchmark: Qtr.1 do SSW1.2, HFW Fry #5, Zeno #4 Benchmark: Qtr.1 to SSW1.2,
TTIC 31210: Advanced Natural Language Processing. Kevin Gimpel Spring Lecture 8: Structured PredicCon 2
TTIC 31210: Advanced Natural Language Processing Kevin Gimpel Spring 2019 Lecture 8: Structured PredicCon 2 1 Roadmap intro (1 lecture) deep learning for NLP (5 lectures) structured predic+on (4 lectures)
Aerodynamics I Compressible flow past an airfoil
Aerodynamics I Compressible flow past an airfoil transonic flow past the RAE-8 airfoil (M = 0.73, Re = 6.5 10 6, α = 3.19 ) Potential equation in compressible flows Full potential theory Let us introduce
Revenue Maximization. Sept. 25, 2018
Revenue Maximization Sept. 25, 2018 Goal So Far: Ideal Auctions Dominant-Strategy Incentive Compatible (DSIC) b i = v i is a dominant strategy u i 0 x is welfare-maximizing x and p run in polynomial time
Tychy, plan miasta: Skala 1: (Polish Edition)
Tychy, plan miasta: Skala 1:20 000 (Polish Edition) Poland) Przedsiebiorstwo Geodezyjno-Kartograficzne (Katowice Click here if your download doesn"t start automatically Tychy, plan miasta: Skala 1:20 000
KONSPEKT DO LEKCJI MATEMATYKI W KLASIE 3 POLO/ A LAYER FOR CLASS 3 POLO MATHEMATICS
KONSPEKT DO LEKCJI MATEMATYKI W KLASIE 3 POLO/ A LAYER FOR CLASS 3 POLO MATHEMATICS Temat: Funkcja logarytmiczna (i wykładnicza)/ Logarithmic (and exponential) function Typ lekcji: Lekcja ćwiczeniowa/training
The Overview of Civilian Applications of Airborne SAR Systems
The Overview of Civilian Applications of Airborne SAR Systems Maciej Smolarczyk, Piotr Samczyński Andrzej Gadoś, Maj Mordzonek Research and Development Department of PIT S.A. PART I WHAT DOES SAR MEAN?
Physics-Based Animation 4 Mass-spring systems
COL865: Special Topics in Computer Applications Physics-Based Animation 4 Mass-spring systems Particle systems Consider n point masses in R 3 ith particle has mass m i, position x i, velocity v i External
Linear Classification and Logistic Regression. Pascal Fua IC-CVLab
Linear Classification and Logistic Regression Pascal Fua IC-CVLab 1 aaagcxicbdtdbtmwfafwdgxlhk8orha31ibqycvkdgpshdqxtwotng2pxtvqujmok1qlky5xllzrnobbediegwcap4votk2kqkf+/y/tnphdschtadu/giv3vtea99cfma8fpx7ytlxx7ckns4sylo3doom7jguhj1hxchmy/irhrlgh67lxb5x3blis8jjqynmedqujiu5zsqqagrx+yjcfpcrydusshmzeluzsg7tttiew5khhcuzm5rv0gn1unw6zl3gbzlpr3liwncyr6aaqinx4wnc/rpg6ix5szd86agoftuu0g/krjxdarph62enthdey3zn/+mi5zknou2ap+tclvhob9sxhwvhaqketnde7geqjp21zvjsfrcnkfhtejoz23vq97elxjlpbtmxpl6qxtl1sgfv1ptpy/yq9mgacrzkgje0hjj2rq7vtywnishnnkzsqekucnlblrarlh8x8szxolrrxkb8n6o4kmo/e7siisnozcfvsedlol60a/j8nmul/gby8mmssrfr2it8lkyxr9dirxxngzthtbaejv
Zakopane, plan miasta: Skala ok. 1: = City map (Polish Edition)
Zakopane, plan miasta: Skala ok. 1:15 000 = City map (Polish Edition) Click here if your download doesn"t start automatically Zakopane, plan miasta: Skala ok. 1:15 000 = City map (Polish Edition) Zakopane,
Katowice, plan miasta: Skala 1: = City map = Stadtplan (Polish Edition)
Katowice, plan miasta: Skala 1:20 000 = City map = Stadtplan (Polish Edition) Polskie Przedsiebiorstwo Wydawnictw Kartograficznych im. Eugeniusza Romera Click here if your download doesn"t start automatically
Wojewodztwo Koszalinskie: Obiekty i walory krajoznawcze (Inwentaryzacja krajoznawcza Polski) (Polish Edition)
Wojewodztwo Koszalinskie: Obiekty i walory krajoznawcze (Inwentaryzacja krajoznawcza Polski) (Polish Edition) Robert Respondowski Click here if your download doesn"t start automatically Wojewodztwo Koszalinskie:
Analysis of Movie Profitability STAT 469 IN CLASS ANALYSIS #2
Analysis of Movie Profitability STAT 469 IN CLASS ANALYSIS #2 aaaklnictzzjb9tgfmcnadpg7oy0lxa9edva9kkapdarhyk2k7gourinlwsweyzikuyiigvyleiv/cv767fpf/5crc1xt9va5mx7w3m/ecuqw1kuztpx/rl3/70h73/w4cog9dhhn3z62d6jzy+yzj766txpoir9nzszisjynetqr+rvlfvyoozu5xbybpsxb1wahul8phczdt2v4zgchb7uecwphlyigrgkjcyiflfyci0kxnmr4z6kw0jsokvot8isntpa3gbknlcufiv/h+hh+eur4fomd417rvtfjoit5pfju6yxiab2fmwk0y/feuybobqk+axnke8xzjjhfyd8kkpl9zdoddkazd5j6bzpemjb64smjb6vb4xmehysu08lsrszopxftlzee130jcb0zjxy7r5wa2f1s2off2+dyatrughnrtpkuprlcpu55zlxpss/yqe2eamjkcf0jye8w8yas0paf6t0t2i9stmcua+inbi2rt01tz22tubbqwidypvgz6piynkpobirkxgu54ibzoti4pkw2i5ow9lnuaoabhuxfxqhvnrj6w15tb3furnbm+scyxobjhr5pmj5j/w5ix9wsa2tlwx9alpshlunzjgnrwvqbpwzjl9wes+ptyn+ypy/jgskavtl8j0hz1djdhzwtpjbbvpr1zj7jpg6ve7zxfngj75zee0vmp9qm2uvgu/9zdofq6r+g8l4xctvo+v+xdrfr8oxiwutycu0qgyf8icuyvp/sixfi9zxe11vp6mrjjovpmxm6acrtbia+wjr9bevlgjwlz5xd3rfna9g06qytaoofk8olxbxc7xby2evqjmmk6pjvvzxmpbnct6+036xp5vdbrnbdqph8brlfn/n/khnfumhf6z1v7h/80yieukkd5j0un82t9mynxzmk0s/bzn4tacdziszdhwrl8x5ako8qp1n1zn0k6w2em0km9zj1i4yt1pt3xiprw85jmc2m1ut2geum6y6es2fwx6c+wlrpykblopbuj5nnr2byygfy5opllv4+jmm7s6u+tvhywbnb0kv2lt5th4xipmiij+y1toiyo7bo0d+vzvovjkp6aoejsubhj3qrp3fjd/m23pay8h218ibvx3nicofvd1xi86+kh6nb/b+hgsjp5+qwpurzlir15np66vmdehh6tyazdm1k/5ejtuvurgcqux6yc+qw/sbsaj7lkt4x9qmtp7euk6zbdedyuzu6ptsu2eeu3rxcz06uf6g8wyuveznhkbzynajbb7r7cbmla+jbtrst0ow2v6ntkwv8svnwqnu5pa3oxfeexf93739p93chq/fv+jr8r0d9brhpcxr2w88bvqbr41j6wvrb+u5dzjpvx+veoaxwptzp/8cen+xbg==
Standardized Test Practice
Standardized Test Practice 1. Which of the following is the length of a three-dimensional diagonal of the figure shown? a. 4.69 units b. 13.27 units c. 13.93 units 3 d. 16.25 units 8 2. Which of the following
Chapter 10 Test Study Guide
Geometry Name I: 1 k 2R0Q16^ nkjuytaf HzoXftfwlatrqem PLLg.` t YAAlIlO PrfiHgihvtXsG PreFsbeFrRvuetdk. hapter 10 est tudy Guide Name the arc made by the given angle. ate Period 1) Q Q A) ) ) ) 2) Major
Gradient Coding using the Stochastic Block Model
Gradient Coding using the Stochastic Block Model Zachary Charles (UW-Madison) Joint work with Dimitris Papailiopoulos (UW-Madison) aaacaxicbvdlssnafj3uv62vqbvbzwarxjsqikaboelgzux7gcaeywtsdp1mwsxeaepd+ctuxcji1r9w5984bbpq1gmxdufcy733bcmjutn2t1fawl5zxsuvvzy2t7z3zn29lkwyguktjywrnqbjwigntuuvi51uebqhjlsdwfxebz8qiwnc79uwjv6mepxgfcoljd88uiox0m1hvlnzwzgowymjn7tjyzertmvpareju5aqkndwzs83thawe64wq1j2httvxo6eopirccxnjekrhqae6wrkuuykl08/gmnjryqwsoqurubu/t2ro1jkyrzozhipvpz3juj/xjdt0ywxu55mina8wxrldkoetukairuekzbubgfb9a0q95fawonqkjoez/7lrdi6trzbcm7pqvwrio4yoarh4aq44bzuwq1ogcba4be8g1fwzjwzl8a78tfrlrnfzd74a+pzb2h+lzm=
OpenPoland.net API Documentation
OpenPoland.net API Documentation Release 1.0 Michał Gryczka July 11, 2014 Contents 1 REST API tokens: 3 1.1 How to get a token............................................ 3 2 REST API : search for assets
Rozpoznawanie twarzy metodą PCA Michał Bereta 1. Testowanie statystycznej istotności różnic między jakością klasyfikatorów
Rozpoznawanie twarzy metodą PCA Michał Bereta www.michalbereta.pl 1. Testowanie statystycznej istotności różnic między jakością klasyfikatorów Wiemy, że możemy porównywad klasyfikatory np. za pomocą kroswalidacji.
JĘZYK ANGIELSKI ĆWICZENIA ORAZ REPETYTORIUM GRAMATYCZNE
MACIEJ MATASEK JĘZYK ANGIELSKI ĆWICZENIA ORAZ REPETYTORIUM GRAMATYCZNE 1 Copyright by Wydawnictwo HANDYBOOKS Poznań 2014 Wszelkie prawa zastrzeżone. Każda reprodukcja lub adaptacja całości bądź części
SubVersion. Piotr Mikulski. SubVersion. P. Mikulski. Co to jest subversion? Zalety SubVersion. Wady SubVersion. Inne różnice SubVersion i CVS
Piotr Mikulski 2006 Subversion is a free/open-source version control system. That is, Subversion manages files and directories over time. A tree of files is placed into a central repository. The repository
Date Period Find the area of each regular polygon. Round your answer to the nearest tenth if necessary. 1) 10.3 yd. 6 m 11.2 m -1-
Geometry c A20^16 bkeumtias csgorfvtswfarem JLELE_.t c AKlzly XrmiqgyhptKsL nrge^slewravieydw. hapter est eview. Name I: 1 ate eriod Find the area of each regular polygon. ound your answer to the nearest
Zarządzanie sieciami telekomunikacyjnymi
SNMP Protocol The Simple Network Management Protocol (SNMP) is an application layer protocol that facilitates the exchange of management information between network devices. It is part of the Transmission
www.irs.gov/form990. If "Yes," complete Schedule A Schedule B, Schedule of Contributors If "Yes," complete Schedule C, Part I If "Yes," complete Schedule C, Part II If "Yes," complete Schedule C, Part
Karpacz, plan miasta 1:10 000: Panorama Karkonoszy, mapa szlakow turystycznych (Polish Edition)
Karpacz, plan miasta 1:10 000: Panorama Karkonoszy, mapa szlakow turystycznych (Polish Edition) J Krupski Click here if your download doesn"t start automatically Karpacz, plan miasta 1:10 000: Panorama
How to translate Polygons
How to translate Polygons Translation procedure. 1) Open polygons.img in Imagine 2) Press F4 to open Memory Window 3) Find and edit tlumacz class, edit all the procedures (listed below) 4) Invent a new
ITIL 4 Certification
4 Certification ITIL 3 Certification ITIL Master scheme ITIL Expert 5 Managing across the lifecycle 5 3 SS 3 SD 3 ST 3 SO 3 CS1 4 OSA 4 PPO 4 RCV 4 SOA Ścieżka lifecycle Ścieżka Capability 3 ITIL Practitioner
ERASMUS + : Trail of extinct and active volcanoes, earthquakes through Europe. SURVEY TO STUDENTS.
ERASMUS + : Trail of extinct and active volcanoes, earthquakes through Europe. SURVEY TO STUDENTS. Strona 1 1. Please give one answer. I am: Students involved in project 69% 18 Student not involved in
MaPlan Sp. z O.O. Click here if your download doesn"t start automatically
Mierzeja Wislana, mapa turystyczna 1:50 000: Mikoszewo, Jantar, Stegna, Sztutowo, Katy Rybackie, Przebrno, Krynica Morska, Piaski, Frombork =... = Carte touristique (Polish Edition) MaPlan Sp. z O.O Click
Installation of EuroCert software for qualified electronic signature
Installation of EuroCert software for qualified electronic signature for Microsoft Windows systems Warsaw 28.08.2019 Content 1. Downloading and running the software for the e-signature... 3 a) Installer
Few-fermion thermometry
Few-fermion thermometry Phys. Rev. A 97, 063619 (2018) Tomasz Sowiński Institute of Physics of the Polish Academy of Sciences Co-authors: Marcin Płodzień Rafał Demkowicz-Dobrzański FEW-BODY PROBLEMS FewBody.ifpan.edu.pl
CS 6170: Computational Topology, Spring 2019 Lecture 09
CS 6170: Computtionl Topology, Spring 2019 Lecture 09 Topologicl Dt Anlysis for Dt Scientists Dr. Bei Wng School of Computing Scientific Computing nd Imging Institute (SCI) University of Uth www.sci.uth.edu/~beiwng
DO MONTAŻU POTRZEBNE SĄ DWIE OSOBY! INSTALLATION REQUIRES TWO PEOPLE!
1 HAPPY ANIMALS B09 INSTRUKCJA MONTAŻU ASSEMBLY INSTRUCTIONS Akcesoria / Fittings K1 M M1 ZM1 Z T G1 17 szt. / pcs 13 szt. / pcs B1 13 szt. / pcs W4 13 szt. / pcs W6 14 szt. / pcs U1 1 szt. / pcs U N1
Dupin cyclides osculating surfaces
Paweł Walczak, Uniwersytet Łódzki, Dijon, 25 stycznia 2012 Colaborators: Remi Langevin (UdeB), Adam Bartoszek, Szymon Walczak (UŁ) What is extrinsic conformal geometry? Conformal transformations = transformations
Machine Learning for Data Science (CS4786) Lecture 24. Differential Privacy and Re-useable Holdout
Machine Learning for Data Science (CS4786) Lecture 24 Differential Privacy and Re-useable Holdout Defining Privacy Defining Privacy Dataset + Defining Privacy Dataset + Learning Algorithm Distribution
STAŁE TRASY LOTNICTWA WOJSKOWEGO (MRT) MILITARY ROUTES (MRT)
AIP VFR POLAND VFR ENR 2.4-1 VFR ENR 2.4 STAŁE TRASY LOTNICTWA WOJSKOWEGO (MRT) MILITARY ROUTES (MRT) 1. INFORMACJE OGÓLNE 1. GENERAL 1.1 Konkretne przebiegi tras MRT wyznaczane są według punktów sieci
Wprowadzenie do programu RapidMiner, część 2 Michał Bereta 1. Wykorzystanie wykresu ROC do porównania modeli klasyfikatorów
Wprowadzenie do programu RapidMiner, część 2 Michał Bereta www.michalbereta.pl 1. Wykorzystanie wykresu ROC do porównania modeli klasyfikatorów Zaimportuj dane pima-indians-diabetes.csv. (Baza danych poświęcona
Stargard Szczecinski i okolice (Polish Edition)
Stargard Szczecinski i okolice (Polish Edition) Janusz Leszek Jurkiewicz Click here if your download doesn"t start automatically Stargard Szczecinski i okolice (Polish Edition) Janusz Leszek Jurkiewicz
TTIC 31210: Advanced Natural Language Processing. Kevin Gimpel Spring Lecture 9: Inference in Structured Prediction
TTIC 31210: Advanced Natural Language Processing Kevin Gimpel Spring 2019 Lecture 9: Inference in Structured Prediction 1 intro (1 lecture) Roadmap deep learning for NLP (5 lectures) structured prediction
KINEMATYKA (punkt materialny)
KINEMATYKA (punkt materialny) Wykład 2 2012/2013, zima 1 MECHANIKA KINEMATYKA DYNAMIKA Opis ruchu Przyczyny ruchu Wykład 2 2012/2013, zima 2 1 Y RUCH KRZYWOLINIOWY P XY - Układ odniesienia r y - wektor
DEFORMATION NETS FOR PLANE MIRROR ANAMORPHS
The Journal of Polish Society for Geometry and Engineering Graphics Volume 19 (2009), 39 44 39 DEFORMATION NETS FOR PLANE MIRROR ANAMORPHS Andrzej Zdziarski Division of Descriptive Geometry, Technical
Zmiany techniczne wprowadzone w wersji Comarch ERP Altum
Zmiany techniczne wprowadzone w wersji 2018.2 Copyright 2016 COMARCH SA Wszelkie prawa zastrzeżone Nieautoryzowane rozpowszechnianie całości lub fragmentu niniejszej publikacji w jakiejkolwiek postaci
Poniżej moje uwagi po zapoznaniu się z prezentowanymi zasadami:
Witam wszystkich nawigatorów. Ostatnio zostały opublikowane nowe zasady CEC (opracowane przez Węgrów) dla zawodników i organizatorów CEC 2011, które obowiązują od tego sezonu. Choć w większości pokrywają
Klaps za karę. Wyniki badania dotyczącego postaw i stosowania kar fizycznych. Joanna Włodarczyk
Klaps za karę Wyniki badania dotyczącego postaw i stosowania kar fizycznych Joanna Włodarczyk joanna.wlodarczyk@fdds.pl Warszawa, 1.12.2017 Fundacja Dajemy Dzieciom Siłę, 2017 Informacje o badaniu Badanie
Wykaz linii kolejowych, które są wyposażone w urządzenia systemu ETCS
Wykaz kolejowych, które są wyposażone w urządzenia W tablicy znajdującej się na kolejnych stronach tego załącznika zastosowano następujące oznaczenia: - numer kolejowej według instrukcji Wykaz Id-12 (D-29).
ARNOLD. EDUKACJA KULTURYSTY (POLSKA WERSJA JEZYKOWA) BY DOUGLAS KENT HALL
Read Online and Download Ebook ARNOLD. EDUKACJA KULTURYSTY (POLSKA WERSJA JEZYKOWA) BY DOUGLAS KENT HALL DOWNLOAD EBOOK : ARNOLD. EDUKACJA KULTURYSTY (POLSKA WERSJA Click link bellow and free register
ANKIETA ŚWIAT BAJEK MOJEGO DZIECKA
Przedszkole Nr 1 w Zabrzu ANKIETA ul. Reymonta 52 41-800 Zabrze tel./fax. 0048 32 271-27-34 p1zabrze@poczta.onet.pl http://jedyneczka.bnet.pl ŚWIAT BAJEK MOJEGO DZIECKA Drodzy Rodzice. W związku z realizacją
Wykaz linii kolejowych, które są wyposażone w urzadzenia systemu ETCS
Wykaz kolejowych, które są wyposażone w urzadzenia W tablicy znajdującej się na kolejnych stronach tego załącznika zastosowano następujące oznaczenia: - numer kolejowej według instrukcji Wykaz Id-12 (D-29).
Estimation and planing. Marek Majchrzak, Andrzej Bednarz Wroclaw, 06.07.2011
Estimation and planing Marek Majchrzak, Andrzej Bednarz Wroclaw, 06.07.2011 Story points Story points C D B A E Story points C D 100 B A E Story points C D 2 x 100 100 B A E Story points C D 2 x 100 100
Życie za granicą Studia
- Uczelnia I would like to enroll at a university. Wyrażenie chęci zapisania się na uczelnię I want to apply for course. an undergraduate a postgraduate a PhD a full-time a part-time an online I would
Nazwa projektu: Kreatywni i innowacyjni uczniowie konkurencyjni na rynku pracy
Nazwa projektu: Kreatywni i innowacyjni uczniowie konkurencyjni na rynku pracy DZIAŁANIE 3.2 EDUKACJA OGÓLNA PODDZIAŁANIE 3.2.1 JAKOŚĆ EDUKACJI OGÓLNEJ Projekt współfinansowany przez Unię Europejską w
Instrukcja konfiguracji usługi Wirtualnej Sieci Prywatnej w systemie Mac OSX
UNIWERSYTETU BIBLIOTEKA IEGO UNIWERSYTETU IEGO Instrukcja konfiguracji usługi Wirtualnej Sieci Prywatnej w systemie Mac OSX 1. Make a new connection Open the System Preferences by going to the Apple menu
Jak działa grawitacja?
Nazwa projektu: Kreatywni i innowacyjni uczniowie konkurencyjni na rynku pracy DZIAŁANIE 3.2 EDUKACJA OGÓLNA PODDZIAŁANIE 3.2.1 JAKOŚĆ EDUKACJI OGÓLNEJ Projekt współfinansowany przez Unię Europejską w
Rachunek lambda, zima
Rachunek lambda, zima 2015-16 Wykład 2 12 października 2015 Tydzień temu: Własność Churcha-Rossera (CR) Jeśli a b i a c, to istnieje takie d, że b d i c d. Tydzień temu: Własność Churcha-Rossera (CR) Jeśli
HAPPY ANIMALS L01 HAPPY ANIMALS L03 HAPPY ANIMALS L05 HAPPY ANIMALS L07
HAPPY ANIMALS L0 HAPPY ANIMALS L0 HAPPY ANIMALS L0 HAPPY ANIMALS L07 INSTRUKCJA MONTAŻU ASSEMBLY INSTRUCTIONS Akcesoria / Fittings K ZW W8 W7 Ø x 6 szt. / pcs Ø7 x 70 Narzędzia / Tools DO MONTAŻU POTRZEBNE
HAPPY ANIMALS L02 HAPPY ANIMALS L04 HAPPY ANIMALS L06 HAPPY ANIMALS L08
HAPPY ANIMALS L02 HAPPY ANIMALS L04 HAPPY ANIMALS L06 HAPPY ANIMALS L08 INSTRUKCJA MONTAŻU ASSEMBLY INSTRUCTIONS Akcesoria / Fittings K O G ZW W8 W4 20 szt. / pcs 4 szt. / pcs 4 szt. / pcs 4 szt. / pcs
Domy inaczej pomyślane A different type of housing CEZARY SANKOWSKI
Domy inaczej pomyślane A different type of housing CEZARY SANKOWSKI O tym, dlaczego warto budować pasywnie, komu budownictwo pasywne się opłaca, a kto się go boi, z architektem, Cezarym Sankowskim, rozmawia
WOJSKOWE TRASY LOTÓW (MRT) NA MAŁYCH WYSOKOŚCIACH LOW FLYING MILITARY TRAINING ROUTES (MRT)
MIL AIP POLAND MIL ENR 5.2.5-1 MIL ENR 5.2.5 WOJSKOWE TRASY LOTÓW (MRT) NA MAŁYCH WYSOKOŚCIACH LOW FLYING MILITARY TRAINING ROUTES (MRT) 1. INFORMACJE OGÓLNE 1. GENERAL Konkretne przebiegi tras MRT wyznaczane
Wojewodztwo Koszalinskie: Obiekty i walory krajoznawcze (Inwentaryzacja krajoznawcza Polski) (Polish Edition)
Wojewodztwo Koszalinskie: Obiekty i walory krajoznawcze (Inwentaryzacja krajoznawcza Polski) (Polish Edition) Robert Respondowski Click here if your download doesn"t start automatically Wojewodztwo Koszalinskie:
www.irs.gov/form990. If "Yes," complete Schedule A Schedule B, Schedule of Contributors If "Yes," complete Schedule C, Part I If "Yes," complete Schedule C, Part II If "Yes," complete Schedule C, Part
Extraclass. Football Men. Season 2009/10 - Autumn round
Extraclass Football Men Season 2009/10 - Autumn round Invitation Dear All, On the date of 29th July starts the new season of Polish Extraclass. There will be live coverage form all the matches on Canal+
Stability of Tikhonov Regularization Class 07, March 2003 Alex Rakhlin
Stability of Tikhonov Regularization 9.520 Class 07, March 2003 Alex Rakhlin Plan Review of Stability Bounds Stability of Tikhonov Regularization Algorithms Uniform Stability Review notation: S = {z 1,...,
Before Adam starts work he needs to know where everything is. Maria shows him around the restaurant.
9. PLACE OF WORK MIEJSCE PRACY Before Adam starts work he needs to know where everything is. Maria shows him around the restaurant. Zanim Adam rozpocznie pracę, musi wiedzieć gdzie wszystko jest. Maria
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
Mixed-integer Convex Representability
Mixed-integer Convex Representability Juan Pablo Vielma Massachuse=s Ins?tute of Technology Joint work with Miles Lubin and Ilias Zadik INFORMS Annual Mee?ng, Phoenix, AZ, November, 2018. Mixed-Integer
A sufficient condition of regularity for axially symmetric solutions to the Navier-Stokes equations
A sufficient condition of regularity for axially symmetric solutions to the Navier-Stokes equations G. Seregin & W. Zajaczkowski A sufficient condition of regularity for axially symmetric solutions to
Wojewodztwo Koszalinskie: Obiekty i walory krajoznawcze (Inwentaryzacja krajoznawcza Polski) (Polish Edition)
Wojewodztwo Koszalinskie: Obiekty i walory krajoznawcze (Inwentaryzacja krajoznawcza Polski) (Polish Edition) Robert Respondowski Click here if your download doesn"t start automatically Wojewodztwo Koszalinskie:
SNP SNP Business Partner Data Checker. Prezentacja produktu
SNP SNP Business Partner Data Checker Prezentacja produktu Istota rozwiązania SNP SNP Business Partner Data Checker Celem produktu SNP SNP Business Partner Data Checker jest umożliwienie sprawdzania nazwy
Copyright 2013 Zbigniew Płotnicki. Licence allows only a publication on arxiv.org and vixra.org. Beside it all rights reserved.
Copyright 2013 Zbigniew Płotnicki Licence allows only a publication on arxiv.org and vixra.org. Beside it all rights reserved. Very simple proof that theory of special relativity is false Author: Zbigniew
Automatic Control and Robotics 1 st degree (1st degree / 2nd degree) General (general / practical) Full-time (full-time / part-time)
MODULE DESCRIPTION Module code Module name Algebra liniowa Module name in English Linear Algebra Valid from academic year 013/014 MODULE PLACEMENT IN THE SYLLABUS Subject Level of education Studies profile
18. Przydatne zwroty podczas egzaminu ustnego. 19. Mo liwe pytania egzaminatora i przyk³adowe odpowiedzi egzaminowanego
18. Przydatne zwroty podczas egzaminu ustnego I m sorry, could you repeat that, please? - Przepraszam, czy mo na prosiæ o powtórzenie? I m sorry, I don t understand. - Przepraszam, nie rozumiem. Did you
POLITYKA PRYWATNOŚCI / PRIVACY POLICY
POLITYKA PRYWATNOŚCI / PRIVACY POLICY TeleTrade DJ International Consulting Ltd Sierpień 2013 2011-2014 TeleTrade-DJ International Consulting Ltd. 1 Polityka Prywatności Privacy Policy Niniejsza Polityka
Agnostic Learning and VC dimension
Agnostic Learning and VC dimension Machine Learning Spring 2019 The slides are based on Vivek Srikumar s 1 This Lecture Agnostic Learning What if I cannot guarantee zero training error? Can we still get
adasalai.org POWERS OF IMAGINARY UNIT = i i 2001 Division algorithm : n = 4(q) + r
.COMPLEX NUMBERS Pai POWERS OF IMAGINARY UNIT i =, i = i, i 4 = Division algorithm : n = 4(q) + r i n = (i) 4q+r = (i) 4q (i) r = (i 4 ) q (i) r if r = 0, i n = ; if r =, i n = i; if r =, i n = ; if r
ZDANIA ANGIELSKIE W PARAFRAZIE
MACIEJ MATASEK ZDANIA ANGIELSKIE W PARAFRAZIE HANDYBOOKS 1 Copyright by Wydawnictwo HANDYBOOKS Poznań 2014 Wszelkie prawa zastrzeżone. Każda reprodukcja lub adaptacja całości bądź części niniejszej publikacji,
tum.de/fall2018/ in2357
https://piazza.com/ tum.de/fall2018/ in2357 Prof. Daniel Cremers From to Classification Categories of Learning (Rep.) Learning Unsupervised Learning clustering, density estimation Supervised Learning learning
USB firmware changing guide. Zmiana oprogramowania za przy użyciu połączenia USB. Changelog / Lista Zmian
1 / 9 Content list / Spis Treści 1. Hardware and software requirements, preparing device to upgrade Wymagania sprzętowe i programowe, przygotowanie urządzenia do aktualizacji 2. Installing drivers and
Poniżej moje uwagi po zapoznaniu się z prezentowanymi zasadami: Str 12. Itiner pictures on the map may have: Name:
Oryginalny dokument: Interpretation of the itineraries of Central European Cup races do pobrania: http://www.newsletterpzm.pl/turystyka/tn0266/cec_rules_2011.pdf Poniżej moje uwagi po zapoznaniu się z
n [2, 11] 1.5 ( G. Pick 1899).
1. / / 2. R 4k 3. 4. 5. 6. / 7. /n 8. n 1 / / Z d ( R d ) d P Z d R d R d? n > 0 n 1.1. R 2 6 n 5 n [Scherrer 1946] d 3 R 3 6 1.2 (Schoenberg 1937). d 3 R d n n = 3, 4, 6 1.1. d 3 R d 1.3. θ θ/π 1.4. 0
Miedzy legenda a historia: Szlakiem piastowskim z Poznania do Gniezna (Biblioteka Kroniki Wielkopolski) (Polish Edition)
Miedzy legenda a historia: Szlakiem piastowskim z Poznania do Gniezna (Biblioteka Kroniki Wielkopolski) (Polish Edition) Piotr Maluskiewicz Click here if your download doesn"t start automatically Miedzy
Surname. Other Names. For Examiner s Use Centre Number. Candidate Number. Candidate Signature
A Surname _ Other Names For Examiner s Use Centre Number Candidate Number Candidate Signature Polish Unit 1 PLSH1 General Certificate of Education Advanced Subsidiary Examination June 2014 Reading and
OSTC GLOBAL TRADING CHALLENGE MANUAL
OSTC GLOBAL TRADING CHALLENGE MANUAL Wrzesień 2014 www.ostc.com/game Po zarejestrowaniu się w grze OSTC Global Trading Challenge, zaakceptowaniu oraz uzyskaniu dostępu to produktów, użytkownik gry będzie