Skip to content

Commit 4ed412c

Browse files
Add FMP notebooks and solutions
0 parents  commit 4ed412c

61 files changed

Lines changed: 160127 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/draft-pdf.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
on: [push]
2+
3+
jobs:
4+
paper:
5+
runs-on: ubuntu-latest
6+
name: Paper Draft
7+
steps:
8+
- name: Checkout
9+
uses: actions/checkout@v2
10+
- name: Build draft PDF
11+
uses: openjournals/openjournals-draft-action@master
12+
with:
13+
journal: jose
14+
# This should be the path to the paper within your repo.
15+
paper-path: paper/paper.md
16+
- name: Upload
17+
uses: actions/upload-artifact@v1
18+
with:
19+
name: paper
20+
# This is the output path where Pandoc will write the compiled
21+
# PDF. Note, this should be the same directory as the input
22+
# paper.md
23+
path: paper/paper.pdf

.gitignore

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# https://stackoverflow.com/questions/987142/make-gitignore-ignore-everything-except-a-few-files
2+
#
3+
# Ignore everything
4+
*
5+
6+
# But not these files ...
7+
!.gitignore
8+
!environment.yml
9+
!README.md
10+
!LICENSE
11+
!*.ipynb
12+
!*.html
13+
14+
# ...even if they are in subdirectories
15+
!*/
16+
17+
# if the files to be tracked are in subdirectories
18+
!libpcp/*.py
19+
!tools/*.py
20+
!data/*.txt
21+
!data/2021_MuellerR_PCP_JOSE_tobesubmitted.pdf
22+
!data/PCP_fig_erlangen.png
23+
!data/PCP_fig_matmult.png
24+
!data_layout/PCP_License.png
25+
!data_layout/PCP_Teaser.png
26+
!data_layout/PCP_MIT_License_OSIApproved.png
27+
!data_layout/PCP_MIT_License_OSIApproved_text.png
28+
!*/.gitkeep
29+
!paper/*
30+
!.github/workflows/*
31+
32+
# But ignore these folders/files
33+
.ipynb_checkpoints

LICENSE

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
MIT License
2+
3+
Copyright (c) 2020 Meinard Müller, International Audio Laboratories Erlangen,
4+
Germany. The International Audio Laboratories Erlangen are a joint institution
5+
of the Friedrich-Alexander-Universität Erlangen-Nürnberg (FAU) and Fraunhofer
6+
Institute for Integrated Circuits IIS.
7+
8+
Permission is hereby granted, free of charge, to any person obtaining a copy of
9+
this software and associated documentation files (the "Software"), to deal in
10+
the Software without restriction, including without limitation the rights to
11+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
12+
of the Software, and to permit persons to whom the Software is furnished to do
13+
so, subject to the following conditions:
14+
15+
The above copyright notice and this permission notice shall be included in all
16+
copies or substantial portions of the Software.
17+
18+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24+
SOFTWARE.

0 commit comments

Comments
 (0)