Skip to content

Commit

Permalink
setup html page
Browse files Browse the repository at this point in the history
  • Loading branch information
cakokke committed Jun 17, 2024
1 parent 3ca1175 commit 711a135
Show file tree
Hide file tree
Showing 3 changed files with 166 additions and 4 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# Simple workflow for deploying static content to GitHub Pages
name: Deploy static content to Pages

on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]
paths:
- "html/**"

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false

jobs:
# Single deploy job since we're just deploying
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Minify Action
uses: dra1ex/minify-action@v1.0.3
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: "html"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
# Transmit and Receive Sensor Selection Using the Multiplicity in the Virtual Array
# Transmit and Receive Sensor Selection Using the Multiplicity in the Virtual Array

[<img src="https://media.licdn.com/dms/image/D4D0BAQGI3u-J_KWMoA/company-logo_200_200/0/1706800320569/eusipco_logo?e=1726704000&v=beta&t=7LHnNirAwhMmAZVz0c3QYYvG4WW5HC6cnymW7vOyN0k" align="right" max-width="200px"/>](https://eusipcolyon.sciencesconf.org)
[<img src="https://media.licdn.com/dms/image/D4D0BAQGI3u-J_KWMoA/company-logo_200_200/0/1706800320569/eusipco_logo?e=1726704000&v=beta&t=7LHnNirAwhMmAZVz0c3QYYvG4WW5HC6cnymW7vOyN0k" align="right" max-width="200px" alt="EUSIPCO 2024 Logo"/>](https://eusipcolyon.sciencesconf.org)
By Ids van der Werf, Costas A. Kokke, Richard Heusdens, Richard C. Hendriks, Geert Leus, and Mario Coutino.



Code accompanying our submission to the 32nd European Signal Processing Conference (EUSIPCO 2024).

## Viewing
Expand Down
118 changes: 118 additions & 0 deletions html/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,118 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>
Transmit and Receive Sensor Selection Using the Multiplicity in the
Virtual Array
</title>
<meta
name="description"
content="Authors: Ids van der Werf, Costas A. Kokke, Richard Heusdens, Richard C. Hendriks, Geert Leus, and Mario Coutino"
/>
<style type="text/css">
html {
max-width: 70ch;
padding: 3em 1em;
margin: auto;
line-height: 1.7;
font-size: 1.2em;
}
</style>
</head>
<body>
<main>
<h1>
Transmit and Receive Sensor Selection Using the Multiplicity in the
Virtual Array
</h1>

<h2>Authors</h2>
<ul>
<li>
<a
href="https://www.linkedin.com/in/ids-van-der-werf-6594aa1b6/"
target="_blank"
rel="noopener noreferrer"
>Ids van der Werf</a
>
</li>
<li>
<a
href="https://costas.kokke.eu"
target="_blank"
rel="noopener noreferrer"
>Costas A. Kokke</a
>
</li>
<li>
<a
href="https://sps.ewi.tudelft.nl/People/bio.php?id=48"
target="_blank"
rel="noopener noreferrer"
>Richard Heusdens</a
>
</li>
<li>
<a
href="https://sps.ewi.tudelft.nl/People/bio.php?id=47"
target="_blank"
rel="noopener noreferrer"
>Richard C. Hendriks</a
>
</li>
<li>
<a
href="https://sps.ewi.tudelft.nl/People/bio.php?id=3"
target="_blank"
rel="noopener noreferrer"
>Geert Leus</a
>
</li>
<li>
<a
href="https://www.linkedin.com/in/mariocoutino/"
target="_blank"
rel="noopener noreferrer"
>Mario Coutino</a
>
</li>
</ul>

<h2>Abstract</h2>
<p>
The main focus of this paper is an active sensing application that
involves selecting transmit and receive sensors to optimize the
Cramér-Rao bound (CRB) on target parameters. Although the CRB is
non-convex in the transmit and receive selection, we demonstrate that it
is convex in the virtual array weight vector, which describes the
multiplicity of the virtual array elements. Based on this finding, we
propose a novel algorithm that optimizes the virtual array weight vector
first and then finds a matching transceiver array. This greatly enhances
the efficiency of the transmit and receive sensor selection problem.
</p>

<h2>Published</h2>
<p>August 2024</p>

<h2>Conference</h2>
<p>2024 32nd European Signal Processing Conference (EUSIPCO)</p>

<h2>Publisher</h2>
<p>IEEE</p>

<h2>Links</h2>
<ul>
<li>
<a
href="https://github.com/CostasAK/eusipco2024"
target="_blank"
rel="noopener noreferrer"
>Code Repository</a
>
</li>
</ul>
</main>
</body>
</html>

0 comments on commit 711a135

Please sign in to comment.