arxiv 0.0.8 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/README.md +40 -0
- data/arxiv.gemspec +9 -9
- data/circle.yml +5 -0
- data/lib/arxiv.rb +0 -7
- data/lib/arxiv/data/category_abbreviation_to_label_mapping.xml +1352 -0
- data/lib/arxiv/models/author.rb +1 -1
- data/lib/arxiv/models/category.rb +27 -3
- data/lib/arxiv/models/link.rb +1 -1
- data/lib/arxiv/models/manuscript.rb +2 -2
- data/lib/arxiv/string_scrubber.rb +1 -1
- data/lib/arxiv/version.rb +1 -1
- data/spec/arxiv/arxiv_spec.rb +13 -11
- data/spec/arxiv/models/author_spec.rb +3 -3
- data/spec/arxiv/models/category_spec.rb +7 -6
- data/spec/arxiv/models/link_spec.rb +3 -3
- data/spec/arxiv/models/manuscript_spec.rb +28 -24
- data/spec/spec_helper.rb +1 -0
- metadata +67 -32
- data/.rvmrc +0 -1
- data/README.rdoc +0 -44
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 5c8d396083af391c784b03924b84ad9b1ee76f93
|
4
|
+
data.tar.gz: 816e389a2819e182a87c1209068743bceb5f914e
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 5a72dc80bff95dffb1f815d2b3556346c84af70f46e1418dbede48ab743fec96d170168d2334a0775f672f86e0e30bd772676dcee6e19f19a6bb69aba9f5d88c
|
7
|
+
data.tar.gz: 8da7618e4c119fddce970cde76ca7d3c2e156bc454f65864f8805b2d22a7c9ca0ea3f5d8febfc3bb8964a146a5268e4ada570fc3250c97d85fdc43dec7e00f9a
|
data/.ruby-gemset
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
arxiv
|
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
ruby-2.2.1
|
data/README.md
ADDED
@@ -0,0 +1,40 @@
|
|
1
|
+
A Ruby wrapper for the [arXiv API](http://arxiv.org/help/api/index). ArXiv is an open access pre-print server used primarily in physics, mathematics, computer science, quantitative biology, quantitative finance and statistics.
|
2
|
+
|
3
|
+
_This is not a complete wrapper around the arXiv API. We'll be making improvements as needed for our overlay journals. If you'd like something added, please create an issue or pull request._
|
4
|
+
|
5
|
+
### Fetching a manuscript
|
6
|
+
Grab a manuscript using the arXiv document id:
|
7
|
+
|
8
|
+
manuscript = Arxiv.get('1202.0819')
|
9
|
+
|
10
|
+
And inspect it:
|
11
|
+
|
12
|
+
manuscript.revision? # => false
|
13
|
+
manuscript.title # => "Laser frequency comb techniques for precise astronomical spectroscopy"
|
14
|
+
manuscript.abstract # => "Precise astronomical spectroscopic analyses routinely assume..."
|
15
|
+
manuscript.arxiv_id # => "1202.0819"
|
16
|
+
manuscript.version # => 1
|
17
|
+
manuscript.pdf_url # => "http://arxiv.org/pdf/1202.0819v1"
|
18
|
+
|
19
|
+
### Authors
|
20
|
+
Look up a manuscript's authors:
|
21
|
+
|
22
|
+
authors = manuscript.authors # => an array of all the manuscript's authors
|
23
|
+
authors.map(&:name) # => ["Michael T. Murphy", "Clayton R. Locke", "Philip S. Light", "Andre N. Luiten", "Jon S. Lawrence"]
|
24
|
+
|
25
|
+
# a single author
|
26
|
+
authors.last.name # => "Jon S. Lawrence"
|
27
|
+
authors.last.affiliations # => ["Australian Astronomical Observatory", "Macquarie University"]
|
28
|
+
|
29
|
+
### Categories
|
30
|
+
Look at a manuscript's categories:
|
31
|
+
|
32
|
+
manuscript.categories # => an array of categories
|
33
|
+
manuscript.categories.map(&:abbreviation) # => ["astro-ph.IM", "astro-ph.CO", "astro-ph.EP"]
|
34
|
+
|
35
|
+
# a single category
|
36
|
+
manuscript.primary_category.name # => "astro-ph.IM"
|
37
|
+
manuscript.primary_category.description # => "Physics - Instrumentation and Methods for Astrophysics"
|
38
|
+
|
39
|
+
### License
|
40
|
+
This is an open source project built by {Scholastica}[https://scholasticahq.com] under the {MIT-LICENSE}[https://github.com/scholastica/timber/blob/master/MIT-LICENSE].
|
data/arxiv.gemspec
CHANGED
@@ -5,12 +5,12 @@ require "arxiv/version"
|
|
5
5
|
Gem::Specification.new do |s|
|
6
6
|
s.name = "arxiv"
|
7
7
|
s.version = Arxiv::VERSION
|
8
|
-
s.authors = ["
|
8
|
+
s.authors = ["Scholastica"]
|
9
9
|
s.email = ["coryschires@gmail.com"]
|
10
|
-
s.homepage = ""
|
11
|
-
s.summary =
|
12
|
-
s.description =
|
13
|
-
|
10
|
+
s.homepage = "https://github.com/scholastica/arxiv"
|
11
|
+
s.summary = "Ruby wrapper accessing the arXiv API"
|
12
|
+
s.description = "Makes interacting with arXiv data really easy."
|
13
|
+
s.licenses = ['MIT']
|
14
14
|
s.rubyforge_project = "arxiv"
|
15
15
|
|
16
16
|
s.files = `git ls-files`.split("\n")
|
@@ -19,9 +19,9 @@ Gem::Specification.new do |s|
|
|
19
19
|
s.require_paths = ["lib"]
|
20
20
|
|
21
21
|
# specify any dependencies here; for example:
|
22
|
-
s.add_runtime_dependency "happymapper"
|
23
|
-
s.add_runtime_dependency "nokogiri"
|
24
|
-
|
25
|
-
s.add_development_dependency "rspec"
|
22
|
+
s.add_runtime_dependency "happymapper", '~> 0.4', '>= 0.4.1'
|
23
|
+
s.add_runtime_dependency "nokogiri", '~> 1.6', '>= 1.6.6.2'
|
26
24
|
|
25
|
+
s.add_development_dependency "rspec", '~> 0'
|
26
|
+
s.add_development_dependency "pry", '~> 0'
|
27
27
|
end
|
data/circle.yml
ADDED
data/lib/arxiv.rb
CHANGED
@@ -31,7 +31,6 @@ module Arxiv
|
|
31
31
|
ID_FORMAT = /^#{CURRENT_URL_FORMAT}/
|
32
32
|
|
33
33
|
def self.get(identifier)
|
34
|
-
|
35
34
|
id = parse_arxiv_identifier(identifier)
|
36
35
|
|
37
36
|
unless id =~ ID_FORMAT || id =~ LEGACY_ID_FORMAT
|
@@ -70,10 +69,4 @@ module Arxiv
|
|
70
69
|
def self.legacy_url?(identifier)
|
71
70
|
identifier =~ LEGACY_URL_FORMAT
|
72
71
|
end
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
72
|
end
|
@@ -0,0 +1,1352 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<service xmlns="http://www.w3.org/2007/app" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sword="http://purl.org/net/sword/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:arxiv="http://arxiv.org/schemas/atom">
|
3
|
+
<sword:version>1.3</sword:version>
|
4
|
+
<sword:maxUploadSize>10000</sword:maxUploadSize>
|
5
|
+
<sword:verbose>true</sword:verbose>
|
6
|
+
<sword:noOp>true</sword:noOp>
|
7
|
+
<workspace>
|
8
|
+
<atom:title>arXiv</atom:title>
|
9
|
+
<collection href="https://arxiv.org/sword-app/physics-collection">
|
10
|
+
<atom:title>The Physics archive</atom:title>
|
11
|
+
<accept>application/atom+xml;type=entry</accept>
|
12
|
+
<accept>application/zip</accept>
|
13
|
+
<accept>application/xml</accept>
|
14
|
+
<accept>application/pdf</accept>
|
15
|
+
<accept>application/postscript</accept>
|
16
|
+
<accept>application/vnd.openxmlformats-officedocument.wordprocessingml.document</accept>
|
17
|
+
<accept>text/xml</accept>
|
18
|
+
<accept>image/jpeg</accept>
|
19
|
+
<accept>image/jpg</accept>
|
20
|
+
<accept>image/png</accept>
|
21
|
+
<accept>image/gif</accept>
|
22
|
+
<sword:collectionPolicy>Open Access</sword:collectionPolicy>
|
23
|
+
<dcterms:abstract>The Physics e-print archive at http://arxiv.org/</dcterms:abstract>
|
24
|
+
<sword:mediation>true</sword:mediation>
|
25
|
+
<sword:treatment>will be posted pending moderator approval</sword:treatment>
|
26
|
+
<sword:acceptPackaging>http://purl.org/net/sword-types/bagit</sword:acceptPackaging>
|
27
|
+
<categories fixed="yes">
|
28
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/astro-ph.CO" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Cosmology and Extragalactic Astrophysics"/>
|
29
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/astro-ph.EP" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Earth and Planetary Astrophysics"/>
|
30
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/astro-ph.GA" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Galaxy Astrophysics"/>
|
31
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/astro-ph.HE" scheme="http://arxiv.org/terms/arXiv/" label="Physics - High Energy Astrophysical Phenomena"/>
|
32
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/astro-ph.IM" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Instrumentation and Methods for Astrophysics"/>
|
33
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/astro-ph.SR" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Solar and Stellar Astrophysics"/>
|
34
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.dis-nn" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Disordered Systems and Neural Networks"/>
|
35
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.mes-hall" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Mesoscale and Nanoscale Physics"/>
|
36
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.mtrl-sci" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Materials Science"/>
|
37
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.other" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Other Condensed Matter"/>
|
38
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.quant-gas" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Quantum Gases"/>
|
39
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.soft" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Soft Condensed Matter"/>
|
40
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.stat-mech" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Statistical Mechanics"/>
|
41
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.str-el" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Strongly Correlated Electrons"/>
|
42
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.supr-con" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Superconductivity"/>
|
43
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/gr-qc" scheme="http://arxiv.org/terms/arXiv/" label="General Relativity and Quantum Cosmology"/>
|
44
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/hep-ex" scheme="http://arxiv.org/terms/arXiv/" label="High Energy Physics - Experiment"/>
|
45
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/hep-lat" scheme="http://arxiv.org/terms/arXiv/" label="High Energy Physics - Lattice"/>
|
46
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/hep-ph" scheme="http://arxiv.org/terms/arXiv/" label="High Energy Physics - Phenomenology"/>
|
47
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/hep-th" scheme="http://arxiv.org/terms/arXiv/" label="High Energy Physics - Theory"/>
|
48
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math-ph" scheme="http://arxiv.org/terms/arXiv/" label="Mathematical Physics"/>
|
49
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nucl-ex" scheme="http://arxiv.org/terms/arXiv/" label="Nuclear Experiment"/>
|
50
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nucl-th" scheme="http://arxiv.org/terms/arXiv/" label="Nuclear Theory"/>
|
51
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.acc-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Accelerator Physics"/>
|
52
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.ao-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Atmospheric and Oceanic Physics"/>
|
53
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.atm-clus" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Atomic and Molecular Clusters"/>
|
54
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.atom-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Atomic Physics"/>
|
55
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.bio-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Biological Physics"/>
|
56
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.chem-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Chemical Physics"/>
|
57
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.class-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Classical Physics"/>
|
58
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.comp-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Computational Physics"/>
|
59
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.data-an" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Data Analysis, Statistics and Probability"/>
|
60
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.ed-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Physics Education"/>
|
61
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.flu-dyn" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Fluid Dynamics"/>
|
62
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.gen-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - General Physics"/>
|
63
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.geo-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Geophysics"/>
|
64
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.hist-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - History of Physics"/>
|
65
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.ins-det" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Instrumentation and Detectors"/>
|
66
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.med-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Medical Physics"/>
|
67
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.optics" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Optics"/>
|
68
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.plasm-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Plasma Physics"/>
|
69
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.pop-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Popular Physics"/>
|
70
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.soc-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Physics and Society"/>
|
71
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.space-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Space Physics"/>
|
72
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/quant-ph" scheme="http://arxiv.org/terms/arXiv/" label="Quantum Physics"/>
|
73
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.BM" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Biomolecules"/>
|
74
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.CB" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Cell Behavior"/>
|
75
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.GN" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Genomics"/>
|
76
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.MN" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Molecular Networks"/>
|
77
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.NC" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Neurons and Cognition"/>
|
78
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.OT" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Other"/>
|
79
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.PE" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Populations and Evolution"/>
|
80
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.QM" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Quantitative Methods"/>
|
81
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.SC" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Subcellular Processes"/>
|
82
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.TO" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Tissues and Organs"/>
|
83
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/stat.AP" scheme="http://arxiv.org/terms/arXiv/" label="Statistics - Applications"/>
|
84
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/stat.CO" scheme="http://arxiv.org/terms/arXiv/" label="Statistics - Computation"/>
|
85
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/stat.ME" scheme="http://arxiv.org/terms/arXiv/" label="Statistics - Methodology"/>
|
86
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/stat.ML" scheme="http://arxiv.org/terms/arXiv/" label="Statistics - Machine Learning"/>
|
87
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/stat.TH" scheme="http://arxiv.org/terms/arXiv/" label="Statistics - Theory"/>
|
88
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.AI" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Artificial Intelligence"/>
|
89
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.AR" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Architecture"/>
|
90
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CC" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computational Complexity"/>
|
91
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CE" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computational Engineering, Finance, and Science"/>
|
92
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CG" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computational Geometry"/>
|
93
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CL" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computation and Language"/>
|
94
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CR" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Cryptography and Security"/>
|
95
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CV" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computer Vision and Pattern Recognition"/>
|
96
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CY" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computers and Society"/>
|
97
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.DB" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Databases"/>
|
98
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.DC" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Distributed, Parallel, and Cluster Computing"/>
|
99
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.DL" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Digital Libraries"/>
|
100
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.DM" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Discrete Mathematics"/>
|
101
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.DS" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Data Structures and Algorithms"/>
|
102
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.FL" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Formal Languages and Automata Theory"/>
|
103
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.GL" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - General Literature"/>
|
104
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.GR" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Graphics"/>
|
105
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.GT" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computer Science and Game Theory"/>
|
106
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.HC" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Human-Computer Interaction"/>
|
107
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.IR" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Information Retrieval"/>
|
108
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.IT" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Information Theory"/>
|
109
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.LG" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Learning"/>
|
110
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.LO" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Logic in Computer Science"/>
|
111
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.MA" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Multiagent Systems"/>
|
112
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.MM" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Multimedia"/>
|
113
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.MS" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Mathematical Software"/>
|
114
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.NA" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Numerical Analysis"/>
|
115
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.NE" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Neural and Evolutionary Computing"/>
|
116
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.NI" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Networking and Internet Architecture"/>
|
117
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.OH" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Other Computer Science"/>
|
118
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.OS" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Operating Systems"/>
|
119
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.PF" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Performance"/>
|
120
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.PL" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Programming Languages"/>
|
121
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.RO" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Robotics"/>
|
122
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.SC" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Symbolic Computation"/>
|
123
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.SD" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Sound"/>
|
124
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.SE" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Software Engineering"/>
|
125
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/ACM1998/'select from list of ACM1998 classes'" scheme="http://arxiv.org/terms/ACM1998" label="The ACM Computing Classification System"/>
|
126
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.CP" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Computational Finance"/>
|
127
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.GN" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - General Finance"/>
|
128
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.PM" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Portfolio Management"/>
|
129
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.PR" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Pricing of Securities"/>
|
130
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.RM" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Risk Management"/>
|
131
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.ST" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Statistical Finance"/>
|
132
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.TR" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Trading and Market Microstructure"/>
|
133
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.AC" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Commutative Algebra"/>
|
134
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.AG" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Algebraic Geometry"/>
|
135
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.AP" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Analysis of PDEs"/>
|
136
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.AT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Algebraic Topology"/>
|
137
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.CA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Classical Analysis and ODEs"/>
|
138
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.CO" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Combinatorics"/>
|
139
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.CT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Category Theory"/>
|
140
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.CV" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Complex Variables"/>
|
141
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.DG" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Differential Geometry"/>
|
142
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.DS" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Dynamical Systems"/>
|
143
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.FA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Functional Analysis"/>
|
144
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.GM" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - General Mathematics"/>
|
145
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.GN" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - General Topology"/>
|
146
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.GR" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Group Theory"/>
|
147
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.GT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Geometric Topology"/>
|
148
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.HO" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - History and Overview"/>
|
149
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.IT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Information Theory"/>
|
150
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.KT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - K-Theory and Homology"/>
|
151
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.LO" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Logic"/>
|
152
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.MG" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Metric Geometry"/>
|
153
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.MP" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Mathematical Physics"/>
|
154
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.NA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Numerical Analysis"/>
|
155
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.NT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Number Theory"/>
|
156
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.OA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Operator Algebras"/>
|
157
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.OC" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Optimization and Control"/>
|
158
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.PR" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Probability"/>
|
159
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.QA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Quantum Algebra"/>
|
160
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.RA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Rings and Algebras"/>
|
161
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.RT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Representation Theory"/>
|
162
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.SG" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Symplectic Geometry"/>
|
163
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.SP" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Spectral Theory"/>
|
164
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.ST" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Statistics"/>
|
165
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/MSC2000/'select from list of MSC2000 classes'" scheme="http://arxiv.org/terms/MSC2000" label="Mathematics Subject Classification"/>
|
166
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nlin.AO" scheme="http://arxiv.org/terms/arXiv/" label="Nonlinear Sciences - Adaptation and Self-Organizing Systems"/>
|
167
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nlin.CD" scheme="http://arxiv.org/terms/arXiv/" label="Nonlinear Sciences - Chaotic Dynamics"/>
|
168
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nlin.CG" scheme="http://arxiv.org/terms/arXiv/" label="Nonlinear Sciences - Cellular Automata and Lattice Gases"/>
|
169
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nlin.PS" scheme="http://arxiv.org/terms/arXiv/" label="Nonlinear Sciences - Pattern Formation and Solitons"/>
|
170
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nlin.SI" scheme="http://arxiv.org/terms/arXiv/" label="Nonlinear Sciences - Exactly Solvable and Integrable Systems"/>
|
171
|
+
</categories>
|
172
|
+
<arxiv:primary_categories fixed="yes">
|
173
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/astro-ph.CO" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Cosmology and Extragalactic Astrophysics"/>
|
174
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/astro-ph.EP" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Earth and Planetary Astrophysics"/>
|
175
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/astro-ph.GA" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Galaxy Astrophysics"/>
|
176
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/astro-ph.HE" scheme="http://arxiv.org/terms/arXiv/" label="Physics - High Energy Astrophysical Phenomena"/>
|
177
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/astro-ph.IM" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Instrumentation and Methods for Astrophysics"/>
|
178
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/astro-ph.SR" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Solar and Stellar Astrophysics"/>
|
179
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/cond-mat.dis-nn" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Disordered Systems and Neural Networks"/>
|
180
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/cond-mat.mes-hall" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Mesoscale and Nanoscale Physics"/>
|
181
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/cond-mat.mtrl-sci" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Materials Science"/>
|
182
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/cond-mat.other" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Other Condensed Matter"/>
|
183
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/cond-mat.quant-gas" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Quantum Gases"/>
|
184
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/cond-mat.soft" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Soft Condensed Matter"/>
|
185
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/cond-mat.stat-mech" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Statistical Mechanics"/>
|
186
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/cond-mat.str-el" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Strongly Correlated Electrons"/>
|
187
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/cond-mat.supr-con" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Superconductivity"/>
|
188
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/gr-qc" scheme="http://arxiv.org/terms/arXiv/" label="General Relativity and Quantum Cosmology"/>
|
189
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/hep-ex" scheme="http://arxiv.org/terms/arXiv/" label="High Energy Physics - Experiment"/>
|
190
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/hep-lat" scheme="http://arxiv.org/terms/arXiv/" label="High Energy Physics - Lattice"/>
|
191
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/hep-ph" scheme="http://arxiv.org/terms/arXiv/" label="High Energy Physics - Phenomenology"/>
|
192
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/hep-th" scheme="http://arxiv.org/terms/arXiv/" label="High Energy Physics - Theory"/>
|
193
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/math-ph" scheme="http://arxiv.org/terms/arXiv/" label="Mathematical Physics"/>
|
194
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/nucl-ex" scheme="http://arxiv.org/terms/arXiv/" label="Nuclear Experiment"/>
|
195
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/nucl-th" scheme="http://arxiv.org/terms/arXiv/" label="Nuclear Theory"/>
|
196
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/physics.acc-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Accelerator Physics"/>
|
197
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/physics.ao-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Atmospheric and Oceanic Physics"/>
|
198
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/physics.atm-clus" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Atomic and Molecular Clusters"/>
|
199
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/physics.atom-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Atomic Physics"/>
|
200
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/physics.bio-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Biological Physics"/>
|
201
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/physics.chem-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Chemical Physics"/>
|
202
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/physics.class-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Classical Physics"/>
|
203
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/physics.comp-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Computational Physics"/>
|
204
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/physics.data-an" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Data Analysis, Statistics and Probability"/>
|
205
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/physics.ed-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Physics Education"/>
|
206
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/physics.flu-dyn" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Fluid Dynamics"/>
|
207
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/physics.gen-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - General Physics"/>
|
208
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/physics.geo-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Geophysics"/>
|
209
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/physics.hist-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - History of Physics"/>
|
210
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/physics.ins-det" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Instrumentation and Detectors"/>
|
211
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/physics.med-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Medical Physics"/>
|
212
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/physics.optics" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Optics"/>
|
213
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/physics.plasm-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Plasma Physics"/>
|
214
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/physics.pop-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Popular Physics"/>
|
215
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/physics.soc-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Physics and Society"/>
|
216
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/physics.space-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Space Physics"/>
|
217
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/quant-ph" scheme="http://arxiv.org/terms/arXiv/" label="Quantum Physics"/>
|
218
|
+
</arxiv:primary_categories>
|
219
|
+
</collection>
|
220
|
+
<collection href="https://arxiv.org/sword-app/q-bio-collection">
|
221
|
+
<atom:title>The Quantitative Biology archive</atom:title>
|
222
|
+
<accept>application/atom+xml;type=entry</accept>
|
223
|
+
<accept>application/zip</accept>
|
224
|
+
<accept>application/xml</accept>
|
225
|
+
<accept>application/pdf</accept>
|
226
|
+
<accept>application/postscript</accept>
|
227
|
+
<accept>application/vnd.openxmlformats-officedocument.wordprocessingml.document</accept>
|
228
|
+
<accept>text/xml</accept>
|
229
|
+
<accept>image/jpeg</accept>
|
230
|
+
<accept>image/jpg</accept>
|
231
|
+
<accept>image/png</accept>
|
232
|
+
<accept>image/gif</accept>
|
233
|
+
<sword:collectionPolicy>Open Access</sword:collectionPolicy>
|
234
|
+
<dcterms:abstract>The Quantitative Biology e-print archive at http://arxiv.org/</dcterms:abstract>
|
235
|
+
<sword:mediation>true</sword:mediation>
|
236
|
+
<sword:treatment>will be posted pending moderator approval</sword:treatment>
|
237
|
+
<sword:acceptPackaging>http://purl.org/net/sword-types/bagit</sword:acceptPackaging>
|
238
|
+
<categories fixed="yes">
|
239
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/astro-ph.CO" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Cosmology and Extragalactic Astrophysics"/>
|
240
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/astro-ph.EP" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Earth and Planetary Astrophysics"/>
|
241
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/astro-ph.GA" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Galaxy Astrophysics"/>
|
242
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/astro-ph.HE" scheme="http://arxiv.org/terms/arXiv/" label="Physics - High Energy Astrophysical Phenomena"/>
|
243
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/astro-ph.IM" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Instrumentation and Methods for Astrophysics"/>
|
244
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/astro-ph.SR" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Solar and Stellar Astrophysics"/>
|
245
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.dis-nn" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Disordered Systems and Neural Networks"/>
|
246
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.mes-hall" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Mesoscale and Nanoscale Physics"/>
|
247
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.mtrl-sci" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Materials Science"/>
|
248
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.other" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Other Condensed Matter"/>
|
249
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.quant-gas" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Quantum Gases"/>
|
250
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.soft" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Soft Condensed Matter"/>
|
251
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.stat-mech" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Statistical Mechanics"/>
|
252
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.str-el" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Strongly Correlated Electrons"/>
|
253
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.supr-con" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Superconductivity"/>
|
254
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/gr-qc" scheme="http://arxiv.org/terms/arXiv/" label="General Relativity and Quantum Cosmology"/>
|
255
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/hep-ex" scheme="http://arxiv.org/terms/arXiv/" label="High Energy Physics - Experiment"/>
|
256
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/hep-lat" scheme="http://arxiv.org/terms/arXiv/" label="High Energy Physics - Lattice"/>
|
257
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/hep-ph" scheme="http://arxiv.org/terms/arXiv/" label="High Energy Physics - Phenomenology"/>
|
258
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/hep-th" scheme="http://arxiv.org/terms/arXiv/" label="High Energy Physics - Theory"/>
|
259
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math-ph" scheme="http://arxiv.org/terms/arXiv/" label="Mathematical Physics"/>
|
260
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nucl-ex" scheme="http://arxiv.org/terms/arXiv/" label="Nuclear Experiment"/>
|
261
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nucl-th" scheme="http://arxiv.org/terms/arXiv/" label="Nuclear Theory"/>
|
262
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.acc-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Accelerator Physics"/>
|
263
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.ao-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Atmospheric and Oceanic Physics"/>
|
264
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.atm-clus" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Atomic and Molecular Clusters"/>
|
265
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.atom-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Atomic Physics"/>
|
266
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.bio-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Biological Physics"/>
|
267
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.chem-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Chemical Physics"/>
|
268
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.class-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Classical Physics"/>
|
269
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.comp-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Computational Physics"/>
|
270
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.data-an" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Data Analysis, Statistics and Probability"/>
|
271
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.ed-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Physics Education"/>
|
272
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.flu-dyn" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Fluid Dynamics"/>
|
273
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.gen-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - General Physics"/>
|
274
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.geo-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Geophysics"/>
|
275
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.hist-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - History of Physics"/>
|
276
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.ins-det" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Instrumentation and Detectors"/>
|
277
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.med-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Medical Physics"/>
|
278
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.optics" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Optics"/>
|
279
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.plasm-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Plasma Physics"/>
|
280
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.pop-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Popular Physics"/>
|
281
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.soc-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Physics and Society"/>
|
282
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.space-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Space Physics"/>
|
283
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/quant-ph" scheme="http://arxiv.org/terms/arXiv/" label="Quantum Physics"/>
|
284
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.BM" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Biomolecules"/>
|
285
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.CB" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Cell Behavior"/>
|
286
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.GN" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Genomics"/>
|
287
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.MN" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Molecular Networks"/>
|
288
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.NC" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Neurons and Cognition"/>
|
289
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.OT" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Other"/>
|
290
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.PE" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Populations and Evolution"/>
|
291
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.QM" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Quantitative Methods"/>
|
292
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.SC" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Subcellular Processes"/>
|
293
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.TO" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Tissues and Organs"/>
|
294
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/stat.AP" scheme="http://arxiv.org/terms/arXiv/" label="Statistics - Applications"/>
|
295
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/stat.CO" scheme="http://arxiv.org/terms/arXiv/" label="Statistics - Computation"/>
|
296
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/stat.ME" scheme="http://arxiv.org/terms/arXiv/" label="Statistics - Methodology"/>
|
297
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/stat.ML" scheme="http://arxiv.org/terms/arXiv/" label="Statistics - Machine Learning"/>
|
298
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/stat.TH" scheme="http://arxiv.org/terms/arXiv/" label="Statistics - Theory"/>
|
299
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.AI" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Artificial Intelligence"/>
|
300
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.AR" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Architecture"/>
|
301
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CC" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computational Complexity"/>
|
302
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CE" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computational Engineering, Finance, and Science"/>
|
303
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CG" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computational Geometry"/>
|
304
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CL" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computation and Language"/>
|
305
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CR" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Cryptography and Security"/>
|
306
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CV" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computer Vision and Pattern Recognition"/>
|
307
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CY" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computers and Society"/>
|
308
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.DB" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Databases"/>
|
309
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.DC" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Distributed, Parallel, and Cluster Computing"/>
|
310
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.DL" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Digital Libraries"/>
|
311
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.DM" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Discrete Mathematics"/>
|
312
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.DS" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Data Structures and Algorithms"/>
|
313
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.FL" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Formal Languages and Automata Theory"/>
|
314
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.GL" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - General Literature"/>
|
315
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.GR" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Graphics"/>
|
316
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.GT" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computer Science and Game Theory"/>
|
317
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.HC" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Human-Computer Interaction"/>
|
318
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.IR" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Information Retrieval"/>
|
319
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.IT" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Information Theory"/>
|
320
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.LG" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Learning"/>
|
321
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.LO" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Logic in Computer Science"/>
|
322
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.MA" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Multiagent Systems"/>
|
323
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.MM" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Multimedia"/>
|
324
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.MS" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Mathematical Software"/>
|
325
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.NA" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Numerical Analysis"/>
|
326
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.NE" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Neural and Evolutionary Computing"/>
|
327
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.NI" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Networking and Internet Architecture"/>
|
328
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.OH" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Other Computer Science"/>
|
329
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.OS" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Operating Systems"/>
|
330
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.PF" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Performance"/>
|
331
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.PL" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Programming Languages"/>
|
332
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.RO" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Robotics"/>
|
333
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.SC" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Symbolic Computation"/>
|
334
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.SD" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Sound"/>
|
335
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.SE" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Software Engineering"/>
|
336
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/ACM1998/'select from list of ACM1998 classes'" scheme="http://arxiv.org/terms/ACM1998" label="The ACM Computing Classification System"/>
|
337
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.CP" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Computational Finance"/>
|
338
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.GN" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - General Finance"/>
|
339
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.PM" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Portfolio Management"/>
|
340
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.PR" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Pricing of Securities"/>
|
341
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.RM" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Risk Management"/>
|
342
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.ST" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Statistical Finance"/>
|
343
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.TR" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Trading and Market Microstructure"/>
|
344
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.AC" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Commutative Algebra"/>
|
345
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.AG" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Algebraic Geometry"/>
|
346
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.AP" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Analysis of PDEs"/>
|
347
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.AT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Algebraic Topology"/>
|
348
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.CA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Classical Analysis and ODEs"/>
|
349
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.CO" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Combinatorics"/>
|
350
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.CT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Category Theory"/>
|
351
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.CV" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Complex Variables"/>
|
352
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.DG" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Differential Geometry"/>
|
353
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.DS" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Dynamical Systems"/>
|
354
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.FA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Functional Analysis"/>
|
355
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.GM" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - General Mathematics"/>
|
356
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.GN" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - General Topology"/>
|
357
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.GR" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Group Theory"/>
|
358
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.GT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Geometric Topology"/>
|
359
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.HO" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - History and Overview"/>
|
360
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.IT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Information Theory"/>
|
361
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.KT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - K-Theory and Homology"/>
|
362
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.LO" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Logic"/>
|
363
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.MG" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Metric Geometry"/>
|
364
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.MP" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Mathematical Physics"/>
|
365
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.NA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Numerical Analysis"/>
|
366
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.NT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Number Theory"/>
|
367
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.OA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Operator Algebras"/>
|
368
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.OC" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Optimization and Control"/>
|
369
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.PR" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Probability"/>
|
370
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.QA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Quantum Algebra"/>
|
371
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.RA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Rings and Algebras"/>
|
372
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.RT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Representation Theory"/>
|
373
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.SG" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Symplectic Geometry"/>
|
374
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.SP" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Spectral Theory"/>
|
375
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.ST" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Statistics"/>
|
376
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/MSC2000/'select from list of MSC2000 classes'" scheme="http://arxiv.org/terms/MSC2000" label="Mathematics Subject Classification"/>
|
377
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nlin.AO" scheme="http://arxiv.org/terms/arXiv/" label="Nonlinear Sciences - Adaptation and Self-Organizing Systems"/>
|
378
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nlin.CD" scheme="http://arxiv.org/terms/arXiv/" label="Nonlinear Sciences - Chaotic Dynamics"/>
|
379
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nlin.CG" scheme="http://arxiv.org/terms/arXiv/" label="Nonlinear Sciences - Cellular Automata and Lattice Gases"/>
|
380
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nlin.PS" scheme="http://arxiv.org/terms/arXiv/" label="Nonlinear Sciences - Pattern Formation and Solitons"/>
|
381
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nlin.SI" scheme="http://arxiv.org/terms/arXiv/" label="Nonlinear Sciences - Exactly Solvable and Integrable Systems"/>
|
382
|
+
</categories>
|
383
|
+
<arxiv:primary_categories fixed="yes">
|
384
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/q-bio.BM" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Biomolecules"/>
|
385
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/q-bio.CB" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Cell Behavior"/>
|
386
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/q-bio.GN" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Genomics"/>
|
387
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/q-bio.MN" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Molecular Networks"/>
|
388
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/q-bio.NC" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Neurons and Cognition"/>
|
389
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/q-bio.OT" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Other"/>
|
390
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/q-bio.PE" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Populations and Evolution"/>
|
391
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/q-bio.QM" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Quantitative Methods"/>
|
392
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/q-bio.SC" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Subcellular Processes"/>
|
393
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/q-bio.TO" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Tissues and Organs"/>
|
394
|
+
</arxiv:primary_categories>
|
395
|
+
</collection>
|
396
|
+
<collection href="https://arxiv.org/sword-app/stat-collection">
|
397
|
+
<atom:title>The Statistics archive</atom:title>
|
398
|
+
<accept>application/atom+xml;type=entry</accept>
|
399
|
+
<accept>application/zip</accept>
|
400
|
+
<accept>application/xml</accept>
|
401
|
+
<accept>application/pdf</accept>
|
402
|
+
<accept>application/postscript</accept>
|
403
|
+
<accept>application/vnd.openxmlformats-officedocument.wordprocessingml.document</accept>
|
404
|
+
<accept>text/xml</accept>
|
405
|
+
<accept>image/jpeg</accept>
|
406
|
+
<accept>image/jpg</accept>
|
407
|
+
<accept>image/png</accept>
|
408
|
+
<accept>image/gif</accept>
|
409
|
+
<sword:collectionPolicy>Open Access</sword:collectionPolicy>
|
410
|
+
<dcterms:abstract>The Statistics e-print archive at http://arxiv.org/</dcterms:abstract>
|
411
|
+
<sword:mediation>true</sword:mediation>
|
412
|
+
<sword:treatment>will be posted pending moderator approval</sword:treatment>
|
413
|
+
<sword:acceptPackaging>http://purl.org/net/sword-types/bagit</sword:acceptPackaging>
|
414
|
+
<categories fixed="yes">
|
415
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/astro-ph.CO" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Cosmology and Extragalactic Astrophysics"/>
|
416
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/astro-ph.EP" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Earth and Planetary Astrophysics"/>
|
417
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/astro-ph.GA" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Galaxy Astrophysics"/>
|
418
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/astro-ph.HE" scheme="http://arxiv.org/terms/arXiv/" label="Physics - High Energy Astrophysical Phenomena"/>
|
419
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/astro-ph.IM" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Instrumentation and Methods for Astrophysics"/>
|
420
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/astro-ph.SR" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Solar and Stellar Astrophysics"/>
|
421
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.dis-nn" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Disordered Systems and Neural Networks"/>
|
422
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.mes-hall" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Mesoscale and Nanoscale Physics"/>
|
423
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.mtrl-sci" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Materials Science"/>
|
424
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.other" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Other Condensed Matter"/>
|
425
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.quant-gas" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Quantum Gases"/>
|
426
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.soft" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Soft Condensed Matter"/>
|
427
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.stat-mech" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Statistical Mechanics"/>
|
428
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.str-el" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Strongly Correlated Electrons"/>
|
429
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.supr-con" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Superconductivity"/>
|
430
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/gr-qc" scheme="http://arxiv.org/terms/arXiv/" label="General Relativity and Quantum Cosmology"/>
|
431
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/hep-ex" scheme="http://arxiv.org/terms/arXiv/" label="High Energy Physics - Experiment"/>
|
432
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/hep-lat" scheme="http://arxiv.org/terms/arXiv/" label="High Energy Physics - Lattice"/>
|
433
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/hep-ph" scheme="http://arxiv.org/terms/arXiv/" label="High Energy Physics - Phenomenology"/>
|
434
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/hep-th" scheme="http://arxiv.org/terms/arXiv/" label="High Energy Physics - Theory"/>
|
435
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math-ph" scheme="http://arxiv.org/terms/arXiv/" label="Mathematical Physics"/>
|
436
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nucl-ex" scheme="http://arxiv.org/terms/arXiv/" label="Nuclear Experiment"/>
|
437
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nucl-th" scheme="http://arxiv.org/terms/arXiv/" label="Nuclear Theory"/>
|
438
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.acc-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Accelerator Physics"/>
|
439
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.ao-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Atmospheric and Oceanic Physics"/>
|
440
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.atm-clus" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Atomic and Molecular Clusters"/>
|
441
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.atom-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Atomic Physics"/>
|
442
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.bio-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Biological Physics"/>
|
443
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.chem-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Chemical Physics"/>
|
444
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.class-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Classical Physics"/>
|
445
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.comp-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Computational Physics"/>
|
446
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.data-an" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Data Analysis, Statistics and Probability"/>
|
447
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.ed-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Physics Education"/>
|
448
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.flu-dyn" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Fluid Dynamics"/>
|
449
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.gen-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - General Physics"/>
|
450
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.geo-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Geophysics"/>
|
451
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.hist-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - History of Physics"/>
|
452
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.ins-det" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Instrumentation and Detectors"/>
|
453
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.med-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Medical Physics"/>
|
454
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.optics" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Optics"/>
|
455
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.plasm-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Plasma Physics"/>
|
456
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.pop-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Popular Physics"/>
|
457
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.soc-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Physics and Society"/>
|
458
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.space-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Space Physics"/>
|
459
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/quant-ph" scheme="http://arxiv.org/terms/arXiv/" label="Quantum Physics"/>
|
460
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.BM" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Biomolecules"/>
|
461
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.CB" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Cell Behavior"/>
|
462
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.GN" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Genomics"/>
|
463
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.MN" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Molecular Networks"/>
|
464
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.NC" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Neurons and Cognition"/>
|
465
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.OT" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Other"/>
|
466
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.PE" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Populations and Evolution"/>
|
467
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.QM" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Quantitative Methods"/>
|
468
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.SC" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Subcellular Processes"/>
|
469
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.TO" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Tissues and Organs"/>
|
470
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/stat.AP" scheme="http://arxiv.org/terms/arXiv/" label="Statistics - Applications"/>
|
471
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/stat.CO" scheme="http://arxiv.org/terms/arXiv/" label="Statistics - Computation"/>
|
472
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/stat.ME" scheme="http://arxiv.org/terms/arXiv/" label="Statistics - Methodology"/>
|
473
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/stat.ML" scheme="http://arxiv.org/terms/arXiv/" label="Statistics - Machine Learning"/>
|
474
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/stat.TH" scheme="http://arxiv.org/terms/arXiv/" label="Statistics - Theory"/>
|
475
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.AI" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Artificial Intelligence"/>
|
476
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.AR" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Architecture"/>
|
477
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CC" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computational Complexity"/>
|
478
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CE" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computational Engineering, Finance, and Science"/>
|
479
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CG" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computational Geometry"/>
|
480
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CL" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computation and Language"/>
|
481
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CR" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Cryptography and Security"/>
|
482
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CV" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computer Vision and Pattern Recognition"/>
|
483
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CY" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computers and Society"/>
|
484
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.DB" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Databases"/>
|
485
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.DC" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Distributed, Parallel, and Cluster Computing"/>
|
486
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.DL" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Digital Libraries"/>
|
487
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.DM" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Discrete Mathematics"/>
|
488
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.DS" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Data Structures and Algorithms"/>
|
489
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.FL" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Formal Languages and Automata Theory"/>
|
490
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.GL" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - General Literature"/>
|
491
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.GR" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Graphics"/>
|
492
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.GT" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computer Science and Game Theory"/>
|
493
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.HC" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Human-Computer Interaction"/>
|
494
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.IR" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Information Retrieval"/>
|
495
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.IT" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Information Theory"/>
|
496
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.LG" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Learning"/>
|
497
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.LO" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Logic in Computer Science"/>
|
498
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.MA" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Multiagent Systems"/>
|
499
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.MM" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Multimedia"/>
|
500
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.MS" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Mathematical Software"/>
|
501
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.NA" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Numerical Analysis"/>
|
502
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.NE" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Neural and Evolutionary Computing"/>
|
503
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.NI" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Networking and Internet Architecture"/>
|
504
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.OH" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Other Computer Science"/>
|
505
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.OS" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Operating Systems"/>
|
506
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.PF" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Performance"/>
|
507
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.PL" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Programming Languages"/>
|
508
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.RO" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Robotics"/>
|
509
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.SC" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Symbolic Computation"/>
|
510
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.SD" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Sound"/>
|
511
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.SE" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Software Engineering"/>
|
512
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/ACM1998/'select from list of ACM1998 classes'" scheme="http://arxiv.org/terms/ACM1998" label="The ACM Computing Classification System"/>
|
513
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.CP" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Computational Finance"/>
|
514
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.GN" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - General Finance"/>
|
515
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.PM" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Portfolio Management"/>
|
516
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.PR" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Pricing of Securities"/>
|
517
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.RM" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Risk Management"/>
|
518
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.ST" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Statistical Finance"/>
|
519
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.TR" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Trading and Market Microstructure"/>
|
520
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.AC" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Commutative Algebra"/>
|
521
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.AG" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Algebraic Geometry"/>
|
522
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.AP" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Analysis of PDEs"/>
|
523
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.AT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Algebraic Topology"/>
|
524
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.CA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Classical Analysis and ODEs"/>
|
525
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.CO" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Combinatorics"/>
|
526
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.CT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Category Theory"/>
|
527
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.CV" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Complex Variables"/>
|
528
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.DG" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Differential Geometry"/>
|
529
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.DS" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Dynamical Systems"/>
|
530
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.FA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Functional Analysis"/>
|
531
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.GM" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - General Mathematics"/>
|
532
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.GN" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - General Topology"/>
|
533
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.GR" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Group Theory"/>
|
534
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.GT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Geometric Topology"/>
|
535
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.HO" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - History and Overview"/>
|
536
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.IT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Information Theory"/>
|
537
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.KT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - K-Theory and Homology"/>
|
538
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.LO" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Logic"/>
|
539
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.MG" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Metric Geometry"/>
|
540
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.MP" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Mathematical Physics"/>
|
541
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.NA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Numerical Analysis"/>
|
542
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.NT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Number Theory"/>
|
543
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.OA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Operator Algebras"/>
|
544
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.OC" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Optimization and Control"/>
|
545
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.PR" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Probability"/>
|
546
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.QA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Quantum Algebra"/>
|
547
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.RA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Rings and Algebras"/>
|
548
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.RT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Representation Theory"/>
|
549
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.SG" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Symplectic Geometry"/>
|
550
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.SP" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Spectral Theory"/>
|
551
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.ST" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Statistics"/>
|
552
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/MSC2000/'select from list of MSC2000 classes'" scheme="http://arxiv.org/terms/MSC2000" label="Mathematics Subject Classification"/>
|
553
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nlin.AO" scheme="http://arxiv.org/terms/arXiv/" label="Nonlinear Sciences - Adaptation and Self-Organizing Systems"/>
|
554
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nlin.CD" scheme="http://arxiv.org/terms/arXiv/" label="Nonlinear Sciences - Chaotic Dynamics"/>
|
555
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nlin.CG" scheme="http://arxiv.org/terms/arXiv/" label="Nonlinear Sciences - Cellular Automata and Lattice Gases"/>
|
556
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nlin.PS" scheme="http://arxiv.org/terms/arXiv/" label="Nonlinear Sciences - Pattern Formation and Solitons"/>
|
557
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nlin.SI" scheme="http://arxiv.org/terms/arXiv/" label="Nonlinear Sciences - Exactly Solvable and Integrable Systems"/>
|
558
|
+
</categories>
|
559
|
+
<arxiv:primary_categories fixed="yes">
|
560
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/stat.AP" scheme="http://arxiv.org/terms/arXiv/" label="Statistics - Applications"/>
|
561
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/stat.CO" scheme="http://arxiv.org/terms/arXiv/" label="Statistics - Computation"/>
|
562
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/stat.ME" scheme="http://arxiv.org/terms/arXiv/" label="Statistics - Methodology"/>
|
563
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/stat.ML" scheme="http://arxiv.org/terms/arXiv/" label="Statistics - Machine Learning"/>
|
564
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/stat.TH" scheme="http://arxiv.org/terms/arXiv/" label="Statistics - Theory"/>
|
565
|
+
</arxiv:primary_categories>
|
566
|
+
</collection>
|
567
|
+
<collection href="https://arxiv.org/sword-app/cs-collection">
|
568
|
+
<atom:title>The Computer Science archive</atom:title>
|
569
|
+
<accept>application/atom+xml;type=entry</accept>
|
570
|
+
<accept>application/zip</accept>
|
571
|
+
<accept>application/xml</accept>
|
572
|
+
<accept>application/pdf</accept>
|
573
|
+
<accept>application/postscript</accept>
|
574
|
+
<accept>application/vnd.openxmlformats-officedocument.wordprocessingml.document</accept>
|
575
|
+
<accept>text/xml</accept>
|
576
|
+
<accept>image/jpeg</accept>
|
577
|
+
<accept>image/jpg</accept>
|
578
|
+
<accept>image/png</accept>
|
579
|
+
<accept>image/gif</accept>
|
580
|
+
<sword:collectionPolicy>Open Access</sword:collectionPolicy>
|
581
|
+
<dcterms:abstract>The Computer Science e-print archive at http://arxiv.org/</dcterms:abstract>
|
582
|
+
<sword:mediation>true</sword:mediation>
|
583
|
+
<sword:treatment>will be posted pending moderator approval</sword:treatment>
|
584
|
+
<sword:acceptPackaging>http://purl.org/net/sword-types/bagit</sword:acceptPackaging>
|
585
|
+
<categories fixed="yes">
|
586
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/astro-ph.CO" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Cosmology and Extragalactic Astrophysics"/>
|
587
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/astro-ph.EP" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Earth and Planetary Astrophysics"/>
|
588
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/astro-ph.GA" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Galaxy Astrophysics"/>
|
589
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/astro-ph.HE" scheme="http://arxiv.org/terms/arXiv/" label="Physics - High Energy Astrophysical Phenomena"/>
|
590
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/astro-ph.IM" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Instrumentation and Methods for Astrophysics"/>
|
591
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/astro-ph.SR" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Solar and Stellar Astrophysics"/>
|
592
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.dis-nn" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Disordered Systems and Neural Networks"/>
|
593
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.mes-hall" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Mesoscale and Nanoscale Physics"/>
|
594
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.mtrl-sci" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Materials Science"/>
|
595
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.other" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Other Condensed Matter"/>
|
596
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.quant-gas" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Quantum Gases"/>
|
597
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.soft" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Soft Condensed Matter"/>
|
598
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.stat-mech" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Statistical Mechanics"/>
|
599
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.str-el" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Strongly Correlated Electrons"/>
|
600
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.supr-con" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Superconductivity"/>
|
601
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/gr-qc" scheme="http://arxiv.org/terms/arXiv/" label="General Relativity and Quantum Cosmology"/>
|
602
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/hep-ex" scheme="http://arxiv.org/terms/arXiv/" label="High Energy Physics - Experiment"/>
|
603
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/hep-lat" scheme="http://arxiv.org/terms/arXiv/" label="High Energy Physics - Lattice"/>
|
604
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/hep-ph" scheme="http://arxiv.org/terms/arXiv/" label="High Energy Physics - Phenomenology"/>
|
605
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/hep-th" scheme="http://arxiv.org/terms/arXiv/" label="High Energy Physics - Theory"/>
|
606
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math-ph" scheme="http://arxiv.org/terms/arXiv/" label="Mathematical Physics"/>
|
607
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nucl-ex" scheme="http://arxiv.org/terms/arXiv/" label="Nuclear Experiment"/>
|
608
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nucl-th" scheme="http://arxiv.org/terms/arXiv/" label="Nuclear Theory"/>
|
609
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.acc-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Accelerator Physics"/>
|
610
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.ao-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Atmospheric and Oceanic Physics"/>
|
611
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.atm-clus" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Atomic and Molecular Clusters"/>
|
612
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.atom-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Atomic Physics"/>
|
613
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.bio-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Biological Physics"/>
|
614
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.chem-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Chemical Physics"/>
|
615
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.class-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Classical Physics"/>
|
616
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.comp-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Computational Physics"/>
|
617
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.data-an" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Data Analysis, Statistics and Probability"/>
|
618
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.ed-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Physics Education"/>
|
619
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.flu-dyn" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Fluid Dynamics"/>
|
620
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.gen-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - General Physics"/>
|
621
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.geo-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Geophysics"/>
|
622
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.hist-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - History of Physics"/>
|
623
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.ins-det" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Instrumentation and Detectors"/>
|
624
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.med-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Medical Physics"/>
|
625
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.optics" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Optics"/>
|
626
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.plasm-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Plasma Physics"/>
|
627
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.pop-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Popular Physics"/>
|
628
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.soc-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Physics and Society"/>
|
629
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.space-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Space Physics"/>
|
630
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/quant-ph" scheme="http://arxiv.org/terms/arXiv/" label="Quantum Physics"/>
|
631
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.BM" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Biomolecules"/>
|
632
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.CB" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Cell Behavior"/>
|
633
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.GN" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Genomics"/>
|
634
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.MN" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Molecular Networks"/>
|
635
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.NC" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Neurons and Cognition"/>
|
636
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.OT" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Other"/>
|
637
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.PE" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Populations and Evolution"/>
|
638
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.QM" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Quantitative Methods"/>
|
639
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.SC" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Subcellular Processes"/>
|
640
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.TO" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Tissues and Organs"/>
|
641
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/stat.AP" scheme="http://arxiv.org/terms/arXiv/" label="Statistics - Applications"/>
|
642
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/stat.CO" scheme="http://arxiv.org/terms/arXiv/" label="Statistics - Computation"/>
|
643
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/stat.ME" scheme="http://arxiv.org/terms/arXiv/" label="Statistics - Methodology"/>
|
644
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/stat.ML" scheme="http://arxiv.org/terms/arXiv/" label="Statistics - Machine Learning"/>
|
645
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/stat.TH" scheme="http://arxiv.org/terms/arXiv/" label="Statistics - Theory"/>
|
646
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.AI" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Artificial Intelligence"/>
|
647
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.AR" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Architecture"/>
|
648
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CC" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computational Complexity"/>
|
649
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CE" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computational Engineering, Finance, and Science"/>
|
650
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CG" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computational Geometry"/>
|
651
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CL" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computation and Language"/>
|
652
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CR" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Cryptography and Security"/>
|
653
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CV" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computer Vision and Pattern Recognition"/>
|
654
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CY" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computers and Society"/>
|
655
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.DB" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Databases"/>
|
656
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.DC" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Distributed, Parallel, and Cluster Computing"/>
|
657
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.DL" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Digital Libraries"/>
|
658
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.DM" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Discrete Mathematics"/>
|
659
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.DS" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Data Structures and Algorithms"/>
|
660
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.FL" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Formal Languages and Automata Theory"/>
|
661
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.GL" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - General Literature"/>
|
662
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.GR" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Graphics"/>
|
663
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.GT" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computer Science and Game Theory"/>
|
664
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.HC" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Human-Computer Interaction"/>
|
665
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.IR" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Information Retrieval"/>
|
666
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.IT" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Information Theory"/>
|
667
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.LG" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Learning"/>
|
668
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.LO" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Logic in Computer Science"/>
|
669
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.MA" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Multiagent Systems"/>
|
670
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.MM" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Multimedia"/>
|
671
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.MS" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Mathematical Software"/>
|
672
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.NA" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Numerical Analysis"/>
|
673
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.NE" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Neural and Evolutionary Computing"/>
|
674
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.NI" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Networking and Internet Architecture"/>
|
675
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.OH" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Other Computer Science"/>
|
676
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.OS" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Operating Systems"/>
|
677
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.PF" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Performance"/>
|
678
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.PL" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Programming Languages"/>
|
679
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.RO" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Robotics"/>
|
680
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.SC" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Symbolic Computation"/>
|
681
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.SD" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Sound"/>
|
682
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.SE" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Software Engineering"/>
|
683
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/ACM1998/'select from list of ACM1998 classes'" scheme="http://arxiv.org/terms/ACM1998" label="The ACM Computing Classification System"/>
|
684
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.CP" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Computational Finance"/>
|
685
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.GN" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - General Finance"/>
|
686
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.PM" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Portfolio Management"/>
|
687
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.PR" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Pricing of Securities"/>
|
688
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.RM" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Risk Management"/>
|
689
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.ST" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Statistical Finance"/>
|
690
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.TR" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Trading and Market Microstructure"/>
|
691
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.AC" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Commutative Algebra"/>
|
692
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.AG" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Algebraic Geometry"/>
|
693
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.AP" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Analysis of PDEs"/>
|
694
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.AT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Algebraic Topology"/>
|
695
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.CA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Classical Analysis and ODEs"/>
|
696
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.CO" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Combinatorics"/>
|
697
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.CT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Category Theory"/>
|
698
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.CV" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Complex Variables"/>
|
699
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.DG" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Differential Geometry"/>
|
700
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.DS" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Dynamical Systems"/>
|
701
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.FA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Functional Analysis"/>
|
702
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.GM" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - General Mathematics"/>
|
703
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.GN" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - General Topology"/>
|
704
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.GR" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Group Theory"/>
|
705
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.GT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Geometric Topology"/>
|
706
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.HO" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - History and Overview"/>
|
707
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.IT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Information Theory"/>
|
708
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.KT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - K-Theory and Homology"/>
|
709
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.LO" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Logic"/>
|
710
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.MG" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Metric Geometry"/>
|
711
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.MP" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Mathematical Physics"/>
|
712
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.NA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Numerical Analysis"/>
|
713
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.NT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Number Theory"/>
|
714
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.OA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Operator Algebras"/>
|
715
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.OC" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Optimization and Control"/>
|
716
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.PR" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Probability"/>
|
717
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.QA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Quantum Algebra"/>
|
718
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.RA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Rings and Algebras"/>
|
719
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.RT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Representation Theory"/>
|
720
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.SG" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Symplectic Geometry"/>
|
721
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.SP" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Spectral Theory"/>
|
722
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.ST" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Statistics"/>
|
723
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/MSC2000/'select from list of MSC2000 classes'" scheme="http://arxiv.org/terms/MSC2000" label="Mathematics Subject Classification"/>
|
724
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nlin.AO" scheme="http://arxiv.org/terms/arXiv/" label="Nonlinear Sciences - Adaptation and Self-Organizing Systems"/>
|
725
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nlin.CD" scheme="http://arxiv.org/terms/arXiv/" label="Nonlinear Sciences - Chaotic Dynamics"/>
|
726
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nlin.CG" scheme="http://arxiv.org/terms/arXiv/" label="Nonlinear Sciences - Cellular Automata and Lattice Gases"/>
|
727
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nlin.PS" scheme="http://arxiv.org/terms/arXiv/" label="Nonlinear Sciences - Pattern Formation and Solitons"/>
|
728
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nlin.SI" scheme="http://arxiv.org/terms/arXiv/" label="Nonlinear Sciences - Exactly Solvable and Integrable Systems"/>
|
729
|
+
</categories>
|
730
|
+
<arxiv:primary_categories fixed="yes">
|
731
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/cs.AI" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Artificial Intelligence"/>
|
732
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/cs.AR" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Architecture"/>
|
733
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/cs.CC" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computational Complexity"/>
|
734
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/cs.CE" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computational Engineering, Finance, and Science"/>
|
735
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/cs.CG" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computational Geometry"/>
|
736
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/cs.CL" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computation and Language"/>
|
737
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/cs.CR" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Cryptography and Security"/>
|
738
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/cs.CV" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computer Vision and Pattern Recognition"/>
|
739
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/cs.CY" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computers and Society"/>
|
740
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/cs.DB" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Databases"/>
|
741
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/cs.DC" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Distributed, Parallel, and Cluster Computing"/>
|
742
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/cs.DL" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Digital Libraries"/>
|
743
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/cs.DM" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Discrete Mathematics"/>
|
744
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/cs.DS" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Data Structures and Algorithms"/>
|
745
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/cs.FL" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Formal Languages and Automata Theory"/>
|
746
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/cs.GL" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - General Literature"/>
|
747
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/cs.GR" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Graphics"/>
|
748
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/cs.GT" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computer Science and Game Theory"/>
|
749
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/cs.HC" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Human-Computer Interaction"/>
|
750
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/cs.IR" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Information Retrieval"/>
|
751
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/cs.IT" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Information Theory"/>
|
752
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/cs.LG" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Learning"/>
|
753
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/cs.LO" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Logic in Computer Science"/>
|
754
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/cs.MA" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Multiagent Systems"/>
|
755
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/cs.MM" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Multimedia"/>
|
756
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/cs.MS" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Mathematical Software"/>
|
757
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/cs.NA" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Numerical Analysis"/>
|
758
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/cs.NE" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Neural and Evolutionary Computing"/>
|
759
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/cs.NI" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Networking and Internet Architecture"/>
|
760
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/cs.OH" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Other Computer Science"/>
|
761
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/cs.OS" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Operating Systems"/>
|
762
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/cs.PF" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Performance"/>
|
763
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/cs.PL" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Programming Languages"/>
|
764
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/cs.RO" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Robotics"/>
|
765
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/cs.SC" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Symbolic Computation"/>
|
766
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/cs.SD" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Sound"/>
|
767
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/cs.SE" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Software Engineering"/>
|
768
|
+
<arxiv:primary_category term="http://arxiv.org/terms/ACM1998/'select from list of ACM1998 classes'" scheme="http://arxiv.org/terms/ACM1998" label="The ACM Computing Classification System"/>
|
769
|
+
</arxiv:primary_categories>
|
770
|
+
</collection>
|
771
|
+
<collection href="https://arxiv.org/sword-app/q-fin-collection">
|
772
|
+
<atom:title>The Quantitative Finance archive</atom:title>
|
773
|
+
<accept>application/atom+xml;type=entry</accept>
|
774
|
+
<accept>application/zip</accept>
|
775
|
+
<accept>application/xml</accept>
|
776
|
+
<accept>application/pdf</accept>
|
777
|
+
<accept>application/postscript</accept>
|
778
|
+
<accept>application/vnd.openxmlformats-officedocument.wordprocessingml.document</accept>
|
779
|
+
<accept>text/xml</accept>
|
780
|
+
<accept>image/jpeg</accept>
|
781
|
+
<accept>image/jpg</accept>
|
782
|
+
<accept>image/png</accept>
|
783
|
+
<accept>image/gif</accept>
|
784
|
+
<sword:collectionPolicy>Open Access</sword:collectionPolicy>
|
785
|
+
<dcterms:abstract>The Quantitative Finance e-print archive at http://arxiv.org/</dcterms:abstract>
|
786
|
+
<sword:mediation>true</sword:mediation>
|
787
|
+
<sword:treatment>will be posted pending moderator approval</sword:treatment>
|
788
|
+
<sword:acceptPackaging>http://purl.org/net/sword-types/bagit</sword:acceptPackaging>
|
789
|
+
<categories fixed="yes">
|
790
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/astro-ph.CO" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Cosmology and Extragalactic Astrophysics"/>
|
791
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/astro-ph.EP" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Earth and Planetary Astrophysics"/>
|
792
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/astro-ph.GA" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Galaxy Astrophysics"/>
|
793
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/astro-ph.HE" scheme="http://arxiv.org/terms/arXiv/" label="Physics - High Energy Astrophysical Phenomena"/>
|
794
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/astro-ph.IM" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Instrumentation and Methods for Astrophysics"/>
|
795
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/astro-ph.SR" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Solar and Stellar Astrophysics"/>
|
796
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.dis-nn" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Disordered Systems and Neural Networks"/>
|
797
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.mes-hall" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Mesoscale and Nanoscale Physics"/>
|
798
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.mtrl-sci" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Materials Science"/>
|
799
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.other" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Other Condensed Matter"/>
|
800
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.quant-gas" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Quantum Gases"/>
|
801
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.soft" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Soft Condensed Matter"/>
|
802
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.stat-mech" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Statistical Mechanics"/>
|
803
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.str-el" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Strongly Correlated Electrons"/>
|
804
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.supr-con" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Superconductivity"/>
|
805
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/gr-qc" scheme="http://arxiv.org/terms/arXiv/" label="General Relativity and Quantum Cosmology"/>
|
806
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/hep-ex" scheme="http://arxiv.org/terms/arXiv/" label="High Energy Physics - Experiment"/>
|
807
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/hep-lat" scheme="http://arxiv.org/terms/arXiv/" label="High Energy Physics - Lattice"/>
|
808
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/hep-ph" scheme="http://arxiv.org/terms/arXiv/" label="High Energy Physics - Phenomenology"/>
|
809
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/hep-th" scheme="http://arxiv.org/terms/arXiv/" label="High Energy Physics - Theory"/>
|
810
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math-ph" scheme="http://arxiv.org/terms/arXiv/" label="Mathematical Physics"/>
|
811
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nucl-ex" scheme="http://arxiv.org/terms/arXiv/" label="Nuclear Experiment"/>
|
812
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nucl-th" scheme="http://arxiv.org/terms/arXiv/" label="Nuclear Theory"/>
|
813
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.acc-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Accelerator Physics"/>
|
814
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.ao-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Atmospheric and Oceanic Physics"/>
|
815
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.atm-clus" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Atomic and Molecular Clusters"/>
|
816
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.atom-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Atomic Physics"/>
|
817
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.bio-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Biological Physics"/>
|
818
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.chem-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Chemical Physics"/>
|
819
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.class-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Classical Physics"/>
|
820
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.comp-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Computational Physics"/>
|
821
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.data-an" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Data Analysis, Statistics and Probability"/>
|
822
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.ed-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Physics Education"/>
|
823
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.flu-dyn" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Fluid Dynamics"/>
|
824
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.gen-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - General Physics"/>
|
825
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.geo-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Geophysics"/>
|
826
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.hist-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - History of Physics"/>
|
827
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.ins-det" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Instrumentation and Detectors"/>
|
828
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.med-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Medical Physics"/>
|
829
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.optics" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Optics"/>
|
830
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.plasm-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Plasma Physics"/>
|
831
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.pop-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Popular Physics"/>
|
832
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.soc-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Physics and Society"/>
|
833
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.space-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Space Physics"/>
|
834
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/quant-ph" scheme="http://arxiv.org/terms/arXiv/" label="Quantum Physics"/>
|
835
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.BM" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Biomolecules"/>
|
836
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.CB" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Cell Behavior"/>
|
837
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.GN" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Genomics"/>
|
838
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.MN" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Molecular Networks"/>
|
839
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.NC" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Neurons and Cognition"/>
|
840
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.OT" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Other"/>
|
841
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.PE" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Populations and Evolution"/>
|
842
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.QM" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Quantitative Methods"/>
|
843
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.SC" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Subcellular Processes"/>
|
844
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.TO" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Tissues and Organs"/>
|
845
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/stat.AP" scheme="http://arxiv.org/terms/arXiv/" label="Statistics - Applications"/>
|
846
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/stat.CO" scheme="http://arxiv.org/terms/arXiv/" label="Statistics - Computation"/>
|
847
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/stat.ME" scheme="http://arxiv.org/terms/arXiv/" label="Statistics - Methodology"/>
|
848
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/stat.ML" scheme="http://arxiv.org/terms/arXiv/" label="Statistics - Machine Learning"/>
|
849
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/stat.TH" scheme="http://arxiv.org/terms/arXiv/" label="Statistics - Theory"/>
|
850
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.AI" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Artificial Intelligence"/>
|
851
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.AR" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Architecture"/>
|
852
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CC" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computational Complexity"/>
|
853
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CE" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computational Engineering, Finance, and Science"/>
|
854
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CG" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computational Geometry"/>
|
855
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CL" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computation and Language"/>
|
856
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CR" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Cryptography and Security"/>
|
857
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CV" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computer Vision and Pattern Recognition"/>
|
858
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CY" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computers and Society"/>
|
859
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.DB" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Databases"/>
|
860
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.DC" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Distributed, Parallel, and Cluster Computing"/>
|
861
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.DL" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Digital Libraries"/>
|
862
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.DM" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Discrete Mathematics"/>
|
863
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.DS" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Data Structures and Algorithms"/>
|
864
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.FL" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Formal Languages and Automata Theory"/>
|
865
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.GL" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - General Literature"/>
|
866
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.GR" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Graphics"/>
|
867
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.GT" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computer Science and Game Theory"/>
|
868
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.HC" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Human-Computer Interaction"/>
|
869
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.IR" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Information Retrieval"/>
|
870
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.IT" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Information Theory"/>
|
871
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.LG" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Learning"/>
|
872
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.LO" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Logic in Computer Science"/>
|
873
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.MA" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Multiagent Systems"/>
|
874
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.MM" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Multimedia"/>
|
875
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.MS" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Mathematical Software"/>
|
876
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.NA" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Numerical Analysis"/>
|
877
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.NE" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Neural and Evolutionary Computing"/>
|
878
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.NI" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Networking and Internet Architecture"/>
|
879
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.OH" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Other Computer Science"/>
|
880
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.OS" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Operating Systems"/>
|
881
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.PF" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Performance"/>
|
882
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.PL" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Programming Languages"/>
|
883
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.RO" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Robotics"/>
|
884
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.SC" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Symbolic Computation"/>
|
885
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.SD" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Sound"/>
|
886
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.SE" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Software Engineering"/>
|
887
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/ACM1998/'select from list of ACM1998 classes'" scheme="http://arxiv.org/terms/ACM1998" label="The ACM Computing Classification System"/>
|
888
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.CP" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Computational Finance"/>
|
889
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.GN" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - General Finance"/>
|
890
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.PM" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Portfolio Management"/>
|
891
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.PR" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Pricing of Securities"/>
|
892
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.RM" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Risk Management"/>
|
893
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.ST" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Statistical Finance"/>
|
894
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.TR" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Trading and Market Microstructure"/>
|
895
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.AC" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Commutative Algebra"/>
|
896
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.AG" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Algebraic Geometry"/>
|
897
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.AP" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Analysis of PDEs"/>
|
898
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.AT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Algebraic Topology"/>
|
899
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.CA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Classical Analysis and ODEs"/>
|
900
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.CO" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Combinatorics"/>
|
901
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.CT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Category Theory"/>
|
902
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.CV" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Complex Variables"/>
|
903
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.DG" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Differential Geometry"/>
|
904
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.DS" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Dynamical Systems"/>
|
905
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.FA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Functional Analysis"/>
|
906
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.GM" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - General Mathematics"/>
|
907
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.GN" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - General Topology"/>
|
908
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.GR" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Group Theory"/>
|
909
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.GT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Geometric Topology"/>
|
910
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.HO" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - History and Overview"/>
|
911
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.IT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Information Theory"/>
|
912
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.KT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - K-Theory and Homology"/>
|
913
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.LO" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Logic"/>
|
914
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.MG" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Metric Geometry"/>
|
915
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.MP" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Mathematical Physics"/>
|
916
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.NA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Numerical Analysis"/>
|
917
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.NT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Number Theory"/>
|
918
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.OA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Operator Algebras"/>
|
919
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.OC" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Optimization and Control"/>
|
920
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.PR" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Probability"/>
|
921
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.QA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Quantum Algebra"/>
|
922
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.RA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Rings and Algebras"/>
|
923
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.RT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Representation Theory"/>
|
924
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.SG" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Symplectic Geometry"/>
|
925
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.SP" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Spectral Theory"/>
|
926
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.ST" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Statistics"/>
|
927
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/MSC2000/'select from list of MSC2000 classes'" scheme="http://arxiv.org/terms/MSC2000" label="Mathematics Subject Classification"/>
|
928
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nlin.AO" scheme="http://arxiv.org/terms/arXiv/" label="Nonlinear Sciences - Adaptation and Self-Organizing Systems"/>
|
929
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nlin.CD" scheme="http://arxiv.org/terms/arXiv/" label="Nonlinear Sciences - Chaotic Dynamics"/>
|
930
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nlin.CG" scheme="http://arxiv.org/terms/arXiv/" label="Nonlinear Sciences - Cellular Automata and Lattice Gases"/>
|
931
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nlin.PS" scheme="http://arxiv.org/terms/arXiv/" label="Nonlinear Sciences - Pattern Formation and Solitons"/>
|
932
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nlin.SI" scheme="http://arxiv.org/terms/arXiv/" label="Nonlinear Sciences - Exactly Solvable and Integrable Systems"/>
|
933
|
+
</categories>
|
934
|
+
<arxiv:primary_categories fixed="yes">
|
935
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/q-fin.CP" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Computational Finance"/>
|
936
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/q-fin.GN" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - General Finance"/>
|
937
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/q-fin.PM" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Portfolio Management"/>
|
938
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/q-fin.PR" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Pricing of Securities"/>
|
939
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/q-fin.RM" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Risk Management"/>
|
940
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/q-fin.ST" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Statistical Finance"/>
|
941
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/q-fin.TR" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Trading and Market Microstructure"/>
|
942
|
+
</arxiv:primary_categories>
|
943
|
+
</collection>
|
944
|
+
<collection href="https://arxiv.org/sword-app/math-collection">
|
945
|
+
<atom:title>The Mathematics archive</atom:title>
|
946
|
+
<accept>application/atom+xml;type=entry</accept>
|
947
|
+
<accept>application/zip</accept>
|
948
|
+
<accept>application/xml</accept>
|
949
|
+
<accept>application/pdf</accept>
|
950
|
+
<accept>application/postscript</accept>
|
951
|
+
<accept>application/vnd.openxmlformats-officedocument.wordprocessingml.document</accept>
|
952
|
+
<accept>text/xml</accept>
|
953
|
+
<accept>image/jpeg</accept>
|
954
|
+
<accept>image/jpg</accept>
|
955
|
+
<accept>image/png</accept>
|
956
|
+
<accept>image/gif</accept>
|
957
|
+
<sword:collectionPolicy>Open Access</sword:collectionPolicy>
|
958
|
+
<dcterms:abstract>The Mathematics e-print archive at http://arxiv.org/</dcterms:abstract>
|
959
|
+
<sword:mediation>true</sword:mediation>
|
960
|
+
<sword:treatment>will be posted pending moderator approval</sword:treatment>
|
961
|
+
<sword:acceptPackaging>http://purl.org/net/sword-types/bagit</sword:acceptPackaging>
|
962
|
+
<categories fixed="yes">
|
963
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/astro-ph.CO" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Cosmology and Extragalactic Astrophysics"/>
|
964
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/astro-ph.EP" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Earth and Planetary Astrophysics"/>
|
965
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/astro-ph.GA" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Galaxy Astrophysics"/>
|
966
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/astro-ph.HE" scheme="http://arxiv.org/terms/arXiv/" label="Physics - High Energy Astrophysical Phenomena"/>
|
967
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/astro-ph.IM" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Instrumentation and Methods for Astrophysics"/>
|
968
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/astro-ph.SR" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Solar and Stellar Astrophysics"/>
|
969
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.dis-nn" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Disordered Systems and Neural Networks"/>
|
970
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.mes-hall" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Mesoscale and Nanoscale Physics"/>
|
971
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.mtrl-sci" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Materials Science"/>
|
972
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.other" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Other Condensed Matter"/>
|
973
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.quant-gas" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Quantum Gases"/>
|
974
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.soft" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Soft Condensed Matter"/>
|
975
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.stat-mech" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Statistical Mechanics"/>
|
976
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.str-el" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Strongly Correlated Electrons"/>
|
977
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.supr-con" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Superconductivity"/>
|
978
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/gr-qc" scheme="http://arxiv.org/terms/arXiv/" label="General Relativity and Quantum Cosmology"/>
|
979
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/hep-ex" scheme="http://arxiv.org/terms/arXiv/" label="High Energy Physics - Experiment"/>
|
980
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/hep-lat" scheme="http://arxiv.org/terms/arXiv/" label="High Energy Physics - Lattice"/>
|
981
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/hep-ph" scheme="http://arxiv.org/terms/arXiv/" label="High Energy Physics - Phenomenology"/>
|
982
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/hep-th" scheme="http://arxiv.org/terms/arXiv/" label="High Energy Physics - Theory"/>
|
983
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math-ph" scheme="http://arxiv.org/terms/arXiv/" label="Mathematical Physics"/>
|
984
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nucl-ex" scheme="http://arxiv.org/terms/arXiv/" label="Nuclear Experiment"/>
|
985
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nucl-th" scheme="http://arxiv.org/terms/arXiv/" label="Nuclear Theory"/>
|
986
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.acc-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Accelerator Physics"/>
|
987
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.ao-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Atmospheric and Oceanic Physics"/>
|
988
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.atm-clus" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Atomic and Molecular Clusters"/>
|
989
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.atom-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Atomic Physics"/>
|
990
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.bio-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Biological Physics"/>
|
991
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.chem-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Chemical Physics"/>
|
992
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.class-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Classical Physics"/>
|
993
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.comp-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Computational Physics"/>
|
994
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.data-an" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Data Analysis, Statistics and Probability"/>
|
995
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.ed-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Physics Education"/>
|
996
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.flu-dyn" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Fluid Dynamics"/>
|
997
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.gen-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - General Physics"/>
|
998
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.geo-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Geophysics"/>
|
999
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.hist-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - History of Physics"/>
|
1000
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.ins-det" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Instrumentation and Detectors"/>
|
1001
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.med-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Medical Physics"/>
|
1002
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.optics" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Optics"/>
|
1003
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.plasm-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Plasma Physics"/>
|
1004
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.pop-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Popular Physics"/>
|
1005
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.soc-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Physics and Society"/>
|
1006
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.space-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Space Physics"/>
|
1007
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/quant-ph" scheme="http://arxiv.org/terms/arXiv/" label="Quantum Physics"/>
|
1008
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.BM" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Biomolecules"/>
|
1009
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.CB" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Cell Behavior"/>
|
1010
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.GN" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Genomics"/>
|
1011
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.MN" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Molecular Networks"/>
|
1012
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.NC" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Neurons and Cognition"/>
|
1013
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.OT" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Other"/>
|
1014
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.PE" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Populations and Evolution"/>
|
1015
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.QM" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Quantitative Methods"/>
|
1016
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.SC" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Subcellular Processes"/>
|
1017
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.TO" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Tissues and Organs"/>
|
1018
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/stat.AP" scheme="http://arxiv.org/terms/arXiv/" label="Statistics - Applications"/>
|
1019
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/stat.CO" scheme="http://arxiv.org/terms/arXiv/" label="Statistics - Computation"/>
|
1020
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/stat.ME" scheme="http://arxiv.org/terms/arXiv/" label="Statistics - Methodology"/>
|
1021
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/stat.ML" scheme="http://arxiv.org/terms/arXiv/" label="Statistics - Machine Learning"/>
|
1022
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/stat.TH" scheme="http://arxiv.org/terms/arXiv/" label="Statistics - Theory"/>
|
1023
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.AI" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Artificial Intelligence"/>
|
1024
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.AR" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Architecture"/>
|
1025
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CC" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computational Complexity"/>
|
1026
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CE" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computational Engineering, Finance, and Science"/>
|
1027
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CG" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computational Geometry"/>
|
1028
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CL" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computation and Language"/>
|
1029
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CR" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Cryptography and Security"/>
|
1030
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CV" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computer Vision and Pattern Recognition"/>
|
1031
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CY" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computers and Society"/>
|
1032
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.DB" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Databases"/>
|
1033
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.DC" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Distributed, Parallel, and Cluster Computing"/>
|
1034
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.DL" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Digital Libraries"/>
|
1035
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.DM" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Discrete Mathematics"/>
|
1036
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.DS" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Data Structures and Algorithms"/>
|
1037
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.FL" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Formal Languages and Automata Theory"/>
|
1038
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.GL" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - General Literature"/>
|
1039
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.GR" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Graphics"/>
|
1040
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.GT" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computer Science and Game Theory"/>
|
1041
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.HC" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Human-Computer Interaction"/>
|
1042
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.IR" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Information Retrieval"/>
|
1043
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.IT" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Information Theory"/>
|
1044
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.LG" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Learning"/>
|
1045
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.LO" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Logic in Computer Science"/>
|
1046
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.MA" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Multiagent Systems"/>
|
1047
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.MM" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Multimedia"/>
|
1048
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.MS" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Mathematical Software"/>
|
1049
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.NA" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Numerical Analysis"/>
|
1050
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.NE" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Neural and Evolutionary Computing"/>
|
1051
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.NI" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Networking and Internet Architecture"/>
|
1052
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.OH" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Other Computer Science"/>
|
1053
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.OS" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Operating Systems"/>
|
1054
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.PF" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Performance"/>
|
1055
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.PL" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Programming Languages"/>
|
1056
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.RO" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Robotics"/>
|
1057
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.SC" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Symbolic Computation"/>
|
1058
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.SD" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Sound"/>
|
1059
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.SE" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Software Engineering"/>
|
1060
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/ACM1998/'select from list of ACM1998 classes'" scheme="http://arxiv.org/terms/ACM1998" label="The ACM Computing Classification System"/>
|
1061
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.CP" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Computational Finance"/>
|
1062
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.GN" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - General Finance"/>
|
1063
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.PM" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Portfolio Management"/>
|
1064
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.PR" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Pricing of Securities"/>
|
1065
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.RM" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Risk Management"/>
|
1066
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.ST" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Statistical Finance"/>
|
1067
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.TR" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Trading and Market Microstructure"/>
|
1068
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.AC" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Commutative Algebra"/>
|
1069
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.AG" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Algebraic Geometry"/>
|
1070
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.AP" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Analysis of PDEs"/>
|
1071
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.AT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Algebraic Topology"/>
|
1072
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.CA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Classical Analysis and ODEs"/>
|
1073
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.CO" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Combinatorics"/>
|
1074
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.CT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Category Theory"/>
|
1075
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.CV" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Complex Variables"/>
|
1076
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.DG" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Differential Geometry"/>
|
1077
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.DS" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Dynamical Systems"/>
|
1078
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.FA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Functional Analysis"/>
|
1079
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.GM" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - General Mathematics"/>
|
1080
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.GN" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - General Topology"/>
|
1081
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.GR" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Group Theory"/>
|
1082
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.GT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Geometric Topology"/>
|
1083
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.HO" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - History and Overview"/>
|
1084
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.IT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Information Theory"/>
|
1085
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.KT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - K-Theory and Homology"/>
|
1086
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.LO" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Logic"/>
|
1087
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.MG" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Metric Geometry"/>
|
1088
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.MP" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Mathematical Physics"/>
|
1089
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.NA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Numerical Analysis"/>
|
1090
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.NT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Number Theory"/>
|
1091
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.OA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Operator Algebras"/>
|
1092
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.OC" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Optimization and Control"/>
|
1093
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.PR" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Probability"/>
|
1094
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.QA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Quantum Algebra"/>
|
1095
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.RA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Rings and Algebras"/>
|
1096
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.RT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Representation Theory"/>
|
1097
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.SG" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Symplectic Geometry"/>
|
1098
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.SP" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Spectral Theory"/>
|
1099
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.ST" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Statistics"/>
|
1100
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/MSC2000/'select from list of MSC2000 classes'" scheme="http://arxiv.org/terms/MSC2000" label="Mathematics Subject Classification"/>
|
1101
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nlin.AO" scheme="http://arxiv.org/terms/arXiv/" label="Nonlinear Sciences - Adaptation and Self-Organizing Systems"/>
|
1102
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nlin.CD" scheme="http://arxiv.org/terms/arXiv/" label="Nonlinear Sciences - Chaotic Dynamics"/>
|
1103
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nlin.CG" scheme="http://arxiv.org/terms/arXiv/" label="Nonlinear Sciences - Cellular Automata and Lattice Gases"/>
|
1104
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nlin.PS" scheme="http://arxiv.org/terms/arXiv/" label="Nonlinear Sciences - Pattern Formation and Solitons"/>
|
1105
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nlin.SI" scheme="http://arxiv.org/terms/arXiv/" label="Nonlinear Sciences - Exactly Solvable and Integrable Systems"/>
|
1106
|
+
</categories>
|
1107
|
+
<arxiv:primary_categories fixed="yes">
|
1108
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/math.AC" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Commutative Algebra"/>
|
1109
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/math.AG" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Algebraic Geometry"/>
|
1110
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/math.AP" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Analysis of PDEs"/>
|
1111
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/math.AT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Algebraic Topology"/>
|
1112
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/math.CA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Classical Analysis and ODEs"/>
|
1113
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/math.CO" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Combinatorics"/>
|
1114
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/math.CT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Category Theory"/>
|
1115
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/math.CV" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Complex Variables"/>
|
1116
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/math.DG" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Differential Geometry"/>
|
1117
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/math.DS" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Dynamical Systems"/>
|
1118
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/math.FA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Functional Analysis"/>
|
1119
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/math.GM" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - General Mathematics"/>
|
1120
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/math.GN" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - General Topology"/>
|
1121
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/math.GR" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Group Theory"/>
|
1122
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/math.GT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Geometric Topology"/>
|
1123
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/math.HO" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - History and Overview"/>
|
1124
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/math.IT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Information Theory"/>
|
1125
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/math.KT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - K-Theory and Homology"/>
|
1126
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/math.LO" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Logic"/>
|
1127
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/math.MG" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Metric Geometry"/>
|
1128
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/math.MP" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Mathematical Physics"/>
|
1129
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/math.NA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Numerical Analysis"/>
|
1130
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/math.NT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Number Theory"/>
|
1131
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/math.OA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Operator Algebras"/>
|
1132
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/math.OC" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Optimization and Control"/>
|
1133
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/math.PR" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Probability"/>
|
1134
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/math.QA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Quantum Algebra"/>
|
1135
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/math.RA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Rings and Algebras"/>
|
1136
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/math.RT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Representation Theory"/>
|
1137
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/math.SG" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Symplectic Geometry"/>
|
1138
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/math.SP" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Spectral Theory"/>
|
1139
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/math.ST" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Statistics"/>
|
1140
|
+
<arxiv:primary_category term="http://arxiv.org/terms/MSC2000/'select from list of MSC2000 classes'" scheme="http://arxiv.org/terms/MSC2000" label="Mathematics Subject Classification"/>
|
1141
|
+
</arxiv:primary_categories>
|
1142
|
+
</collection>
|
1143
|
+
<collection href="https://arxiv.org/sword-app/nlin-collection">
|
1144
|
+
<atom:title>The Nonlinear Sciences archive</atom:title>
|
1145
|
+
<accept>application/atom+xml;type=entry</accept>
|
1146
|
+
<accept>application/zip</accept>
|
1147
|
+
<accept>application/xml</accept>
|
1148
|
+
<accept>application/pdf</accept>
|
1149
|
+
<accept>application/postscript</accept>
|
1150
|
+
<accept>application/vnd.openxmlformats-officedocument.wordprocessingml.document</accept>
|
1151
|
+
<accept>text/xml</accept>
|
1152
|
+
<accept>image/jpeg</accept>
|
1153
|
+
<accept>image/jpg</accept>
|
1154
|
+
<accept>image/png</accept>
|
1155
|
+
<accept>image/gif</accept>
|
1156
|
+
<sword:collectionPolicy>Open Access</sword:collectionPolicy>
|
1157
|
+
<dcterms:abstract>The Nonlinear Sciences e-print archive at http://arxiv.org/</dcterms:abstract>
|
1158
|
+
<sword:mediation>true</sword:mediation>
|
1159
|
+
<sword:treatment>will be posted pending moderator approval</sword:treatment>
|
1160
|
+
<sword:acceptPackaging>http://purl.org/net/sword-types/bagit</sword:acceptPackaging>
|
1161
|
+
<categories fixed="yes">
|
1162
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/astro-ph.CO" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Cosmology and Extragalactic Astrophysics"/>
|
1163
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/astro-ph.EP" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Earth and Planetary Astrophysics"/>
|
1164
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/astro-ph.GA" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Galaxy Astrophysics"/>
|
1165
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/astro-ph.HE" scheme="http://arxiv.org/terms/arXiv/" label="Physics - High Energy Astrophysical Phenomena"/>
|
1166
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/astro-ph.IM" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Instrumentation and Methods for Astrophysics"/>
|
1167
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/astro-ph.SR" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Solar and Stellar Astrophysics"/>
|
1168
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.dis-nn" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Disordered Systems and Neural Networks"/>
|
1169
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.mes-hall" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Mesoscale and Nanoscale Physics"/>
|
1170
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.mtrl-sci" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Materials Science"/>
|
1171
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.other" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Other Condensed Matter"/>
|
1172
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.quant-gas" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Quantum Gases"/>
|
1173
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.soft" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Soft Condensed Matter"/>
|
1174
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.stat-mech" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Statistical Mechanics"/>
|
1175
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.str-el" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Strongly Correlated Electrons"/>
|
1176
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cond-mat.supr-con" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Superconductivity"/>
|
1177
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/gr-qc" scheme="http://arxiv.org/terms/arXiv/" label="General Relativity and Quantum Cosmology"/>
|
1178
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/hep-ex" scheme="http://arxiv.org/terms/arXiv/" label="High Energy Physics - Experiment"/>
|
1179
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/hep-lat" scheme="http://arxiv.org/terms/arXiv/" label="High Energy Physics - Lattice"/>
|
1180
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/hep-ph" scheme="http://arxiv.org/terms/arXiv/" label="High Energy Physics - Phenomenology"/>
|
1181
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/hep-th" scheme="http://arxiv.org/terms/arXiv/" label="High Energy Physics - Theory"/>
|
1182
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math-ph" scheme="http://arxiv.org/terms/arXiv/" label="Mathematical Physics"/>
|
1183
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nucl-ex" scheme="http://arxiv.org/terms/arXiv/" label="Nuclear Experiment"/>
|
1184
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nucl-th" scheme="http://arxiv.org/terms/arXiv/" label="Nuclear Theory"/>
|
1185
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.acc-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Accelerator Physics"/>
|
1186
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.ao-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Atmospheric and Oceanic Physics"/>
|
1187
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.atm-clus" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Atomic and Molecular Clusters"/>
|
1188
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.atom-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Atomic Physics"/>
|
1189
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.bio-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Biological Physics"/>
|
1190
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.chem-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Chemical Physics"/>
|
1191
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.class-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Classical Physics"/>
|
1192
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.comp-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Computational Physics"/>
|
1193
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.data-an" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Data Analysis, Statistics and Probability"/>
|
1194
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.ed-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Physics Education"/>
|
1195
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.flu-dyn" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Fluid Dynamics"/>
|
1196
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.gen-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - General Physics"/>
|
1197
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.geo-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Geophysics"/>
|
1198
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.hist-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - History of Physics"/>
|
1199
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.ins-det" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Instrumentation and Detectors"/>
|
1200
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.med-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Medical Physics"/>
|
1201
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.optics" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Optics"/>
|
1202
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.plasm-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Plasma Physics"/>
|
1203
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.pop-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Popular Physics"/>
|
1204
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.soc-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Physics and Society"/>
|
1205
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/physics.space-ph" scheme="http://arxiv.org/terms/arXiv/" label="Physics - Space Physics"/>
|
1206
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/quant-ph" scheme="http://arxiv.org/terms/arXiv/" label="Quantum Physics"/>
|
1207
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.BM" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Biomolecules"/>
|
1208
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.CB" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Cell Behavior"/>
|
1209
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.GN" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Genomics"/>
|
1210
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.MN" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Molecular Networks"/>
|
1211
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.NC" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Neurons and Cognition"/>
|
1212
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.OT" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Other"/>
|
1213
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.PE" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Populations and Evolution"/>
|
1214
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.QM" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Quantitative Methods"/>
|
1215
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.SC" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Subcellular Processes"/>
|
1216
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-bio.TO" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Biology - Tissues and Organs"/>
|
1217
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/stat.AP" scheme="http://arxiv.org/terms/arXiv/" label="Statistics - Applications"/>
|
1218
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/stat.CO" scheme="http://arxiv.org/terms/arXiv/" label="Statistics - Computation"/>
|
1219
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/stat.ME" scheme="http://arxiv.org/terms/arXiv/" label="Statistics - Methodology"/>
|
1220
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/stat.ML" scheme="http://arxiv.org/terms/arXiv/" label="Statistics - Machine Learning"/>
|
1221
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/stat.TH" scheme="http://arxiv.org/terms/arXiv/" label="Statistics - Theory"/>
|
1222
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.AI" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Artificial Intelligence"/>
|
1223
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.AR" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Architecture"/>
|
1224
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CC" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computational Complexity"/>
|
1225
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CE" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computational Engineering, Finance, and Science"/>
|
1226
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CG" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computational Geometry"/>
|
1227
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CL" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computation and Language"/>
|
1228
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CR" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Cryptography and Security"/>
|
1229
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CV" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computer Vision and Pattern Recognition"/>
|
1230
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.CY" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computers and Society"/>
|
1231
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.DB" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Databases"/>
|
1232
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.DC" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Distributed, Parallel, and Cluster Computing"/>
|
1233
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.DL" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Digital Libraries"/>
|
1234
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.DM" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Discrete Mathematics"/>
|
1235
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.DS" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Data Structures and Algorithms"/>
|
1236
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.FL" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Formal Languages and Automata Theory"/>
|
1237
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.GL" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - General Literature"/>
|
1238
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.GR" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Graphics"/>
|
1239
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.GT" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Computer Science and Game Theory"/>
|
1240
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.HC" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Human-Computer Interaction"/>
|
1241
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.IR" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Information Retrieval"/>
|
1242
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.IT" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Information Theory"/>
|
1243
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.LG" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Learning"/>
|
1244
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.LO" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Logic in Computer Science"/>
|
1245
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.MA" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Multiagent Systems"/>
|
1246
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.MM" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Multimedia"/>
|
1247
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.MS" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Mathematical Software"/>
|
1248
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.NA" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Numerical Analysis"/>
|
1249
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.NE" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Neural and Evolutionary Computing"/>
|
1250
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.NI" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Networking and Internet Architecture"/>
|
1251
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.OH" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Other Computer Science"/>
|
1252
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.OS" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Operating Systems"/>
|
1253
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.PF" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Performance"/>
|
1254
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.PL" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Programming Languages"/>
|
1255
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.RO" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Robotics"/>
|
1256
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.SC" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Symbolic Computation"/>
|
1257
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.SD" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Sound"/>
|
1258
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/cs.SE" scheme="http://arxiv.org/terms/arXiv/" label="Computer Science - Software Engineering"/>
|
1259
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/ACM1998/'select from list of ACM1998 classes'" scheme="http://arxiv.org/terms/ACM1998" label="The ACM Computing Classification System"/>
|
1260
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.CP" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Computational Finance"/>
|
1261
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.GN" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - General Finance"/>
|
1262
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.PM" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Portfolio Management"/>
|
1263
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.PR" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Pricing of Securities"/>
|
1264
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.RM" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Risk Management"/>
|
1265
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.ST" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Statistical Finance"/>
|
1266
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/q-fin.TR" scheme="http://arxiv.org/terms/arXiv/" label="Quantitative Finance - Trading and Market Microstructure"/>
|
1267
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.AC" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Commutative Algebra"/>
|
1268
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.AG" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Algebraic Geometry"/>
|
1269
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.AP" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Analysis of PDEs"/>
|
1270
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.AT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Algebraic Topology"/>
|
1271
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.CA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Classical Analysis and ODEs"/>
|
1272
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.CO" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Combinatorics"/>
|
1273
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.CT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Category Theory"/>
|
1274
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.CV" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Complex Variables"/>
|
1275
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.DG" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Differential Geometry"/>
|
1276
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.DS" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Dynamical Systems"/>
|
1277
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.FA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Functional Analysis"/>
|
1278
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.GM" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - General Mathematics"/>
|
1279
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.GN" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - General Topology"/>
|
1280
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.GR" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Group Theory"/>
|
1281
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.GT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Geometric Topology"/>
|
1282
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.HO" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - History and Overview"/>
|
1283
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.IT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Information Theory"/>
|
1284
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.KT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - K-Theory and Homology"/>
|
1285
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.LO" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Logic"/>
|
1286
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.MG" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Metric Geometry"/>
|
1287
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.MP" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Mathematical Physics"/>
|
1288
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.NA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Numerical Analysis"/>
|
1289
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.NT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Number Theory"/>
|
1290
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.OA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Operator Algebras"/>
|
1291
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.OC" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Optimization and Control"/>
|
1292
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.PR" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Probability"/>
|
1293
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.QA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Quantum Algebra"/>
|
1294
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.RA" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Rings and Algebras"/>
|
1295
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.RT" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Representation Theory"/>
|
1296
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.SG" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Symplectic Geometry"/>
|
1297
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.SP" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Spectral Theory"/>
|
1298
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/math.ST" scheme="http://arxiv.org/terms/arXiv/" label="Mathematics - Statistics"/>
|
1299
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/MSC2000/'select from list of MSC2000 classes'" scheme="http://arxiv.org/terms/MSC2000" label="Mathematics Subject Classification"/>
|
1300
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nlin.AO" scheme="http://arxiv.org/terms/arXiv/" label="Nonlinear Sciences - Adaptation and Self-Organizing Systems"/>
|
1301
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nlin.CD" scheme="http://arxiv.org/terms/arXiv/" label="Nonlinear Sciences - Chaotic Dynamics"/>
|
1302
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nlin.CG" scheme="http://arxiv.org/terms/arXiv/" label="Nonlinear Sciences - Cellular Automata and Lattice Gases"/>
|
1303
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nlin.PS" scheme="http://arxiv.org/terms/arXiv/" label="Nonlinear Sciences - Pattern Formation and Solitons"/>
|
1304
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/nlin.SI" scheme="http://arxiv.org/terms/arXiv/" label="Nonlinear Sciences - Exactly Solvable and Integrable Systems"/>
|
1305
|
+
</categories>
|
1306
|
+
<arxiv:primary_categories fixed="yes">
|
1307
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/nlin.AO" scheme="http://arxiv.org/terms/arXiv/" label="Nonlinear Sciences - Adaptation and Self-Organizing Systems"/>
|
1308
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/nlin.CD" scheme="http://arxiv.org/terms/arXiv/" label="Nonlinear Sciences - Chaotic Dynamics"/>
|
1309
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/nlin.CG" scheme="http://arxiv.org/terms/arXiv/" label="Nonlinear Sciences - Cellular Automata and Lattice Gases"/>
|
1310
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/nlin.PS" scheme="http://arxiv.org/terms/arXiv/" label="Nonlinear Sciences - Pattern Formation and Solitons"/>
|
1311
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/nlin.SI" scheme="http://arxiv.org/terms/arXiv/" label="Nonlinear Sciences - Exactly Solvable and Integrable Systems"/>
|
1312
|
+
</arxiv:primary_categories>
|
1313
|
+
</collection>
|
1314
|
+
<collection href="https://arxiv.org/sword-app/test-collection">
|
1315
|
+
<atom:title>The Test archive</atom:title>
|
1316
|
+
<accept>application/atom+xml;type=entry</accept>
|
1317
|
+
<accept>application/zip</accept>
|
1318
|
+
<accept>application/xml</accept>
|
1319
|
+
<accept>application/pdf</accept>
|
1320
|
+
<accept>application/postscript</accept>
|
1321
|
+
<accept>application/vnd.openxmlformats-officedocument.wordprocessingml.document</accept>
|
1322
|
+
<accept>text/xml</accept>
|
1323
|
+
<accept>image/jpeg</accept>
|
1324
|
+
<accept>image/jpg</accept>
|
1325
|
+
<accept>image/png</accept>
|
1326
|
+
<accept>image/gif</accept>
|
1327
|
+
<sword:collectionPolicy>Open Access</sword:collectionPolicy>
|
1328
|
+
<dcterms:abstract>The Test e-print archive at http://arxiv.org/</dcterms:abstract>
|
1329
|
+
<sword:mediation>true</sword:mediation>
|
1330
|
+
<sword:treatment>will be posted pending moderator approval</sword:treatment>
|
1331
|
+
<sword:acceptPackaging>http://purl.org/net/sword-types/bagit</sword:acceptPackaging>
|
1332
|
+
<categories fixed="yes">
|
1333
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/test.dis-nn" scheme="http://arxiv.org/terms/arXiv/" label="Test - Test Disruptive Networks"/>
|
1334
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/test.mes-hall" scheme="http://arxiv.org/terms/arXiv/" label="Test - Test Hall"/>
|
1335
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/test.mtrl-sci" scheme="http://arxiv.org/terms/arXiv/" label="Test - Test Mtrl-Sci"/>
|
1336
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/test.soft" scheme="http://arxiv.org/terms/arXiv/" label="Test - Test Soft"/>
|
1337
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/test.stat-mech" scheme="http://arxiv.org/terms/arXiv/" label="Test - Test Mechanics"/>
|
1338
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/test.str-el" scheme="http://arxiv.org/terms/arXiv/" label="Test - Test Electrons"/>
|
1339
|
+
<category xmlns="http://www.w3.org/2005/Atom" term="http://arxiv.org/terms/arXiv/test.supr-con" scheme="http://arxiv.org/terms/arXiv/" label="Test - Test Superconductivity"/>
|
1340
|
+
</categories>
|
1341
|
+
<arxiv:primary_categories fixed="yes">
|
1342
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/test.dis-nn" scheme="http://arxiv.org/terms/arXiv/" label="Test - Test Disruptive Networks"/>
|
1343
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/test.mes-hall" scheme="http://arxiv.org/terms/arXiv/" label="Test - Test Hall"/>
|
1344
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/test.mtrl-sci" scheme="http://arxiv.org/terms/arXiv/" label="Test - Test Mtrl-Sci"/>
|
1345
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/test.soft" scheme="http://arxiv.org/terms/arXiv/" label="Test - Test Soft"/>
|
1346
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/test.stat-mech" scheme="http://arxiv.org/terms/arXiv/" label="Test - Test Mechanics"/>
|
1347
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/test.str-el" scheme="http://arxiv.org/terms/arXiv/" label="Test - Test Electrons"/>
|
1348
|
+
<arxiv:primary_category term="http://arxiv.org/terms/arXiv/test.supr-con" scheme="http://arxiv.org/terms/arXiv/" label="Test - Test Superconductivity"/>
|
1349
|
+
</arxiv:primary_categories>
|
1350
|
+
</collection>
|
1351
|
+
</workspace>
|
1352
|
+
</service>
|