Selected Publications
Exploring the Impact of Memory on Network Controllability
M. Peruzzo, G. Baggio and F. Ticozzi.
Proceedings of the 2024 European Control Conference (ECC).
Model Reduction for Quantum Systems: Discrete-time Quantum Walks and Open Markov Dynamics
T. Grigoletto and F. Ticozzi.
Preprint on Arxiv, 2023.
Dissipative Feedback Switching for Quantum Stabilization
W. Liang, T. Grigoletto and F. Ticozzi.
Preprint on Arxiv, 2022.
Algebraic Reduction of Hidden Markov Models
T. Grigoletto and F. Ticozzi.
IEEE Transactions on Automatic Control ( Volume: 68, Issue: 12, December 2023).
All Group Publications (from arXiv)
// Function to fetch XML data from the provided URL
function fetchXMLData(url) {
return fetch(url)
.then(response => response.text())
.then(data => {
const parser = new DOMParser();
const xmlDoc = parser.parseFromString(data, "text/xml");
return xmlDoc;
});
}
// Function to extract and display the title, author, and uploading year of each entry
function displayEntries(xmlDoc) {
const entries = xmlDoc.querySelectorAll("entry");
const paperListUl = document.getElementById("paperlist");
entries.forEach(entry => {
const title = entry.querySelector("title").textContent;
const link = entry.querySelector("id").textContent;
const authors = Array.from(entry.querySelectorAll("author")).map(author => author.textContent).join(", ");
const uploadingDate = entry.querySelector("published").textContent;
const uploadingYear = new Date(uploadingDate).getFullYear();
const paperLi = document.createElement("li");
const journalNode = entry.querySelector("arxiv\\:journal_ref, journal_ref");
const journal = journalNode ? journalNode.textContent : uploadingYear;
const doiLinkNode = entry.querySelector("link[title='doi']");
const journalLink = doiLinkNode ? doiLinkNode.getAttribute("href") : null;
paperLi.classList.add("paper");
var str=title +"
"+authors +", "+journal +". ";//+ " [arxiv]";
if (journalLink) {
str+="[online]"
}
str=str+ " [arxiv]";
paperLi.innerHTML= str;
paperListUl.appendChild(paperLi);
});
}
// Fetch XML data from the provided URL and display the entries in the paperlist div
const apiUrl = "https://export.arxiv.org/api/query?search_query=au:ticozzi&start=0&max_results=2000&sortBy=submittedDate";
fetchXMLData(apiUrl)
.then(xmlDoc => displayEntries(xmlDoc))
.catch(error => console.error("Error fetching XML data:", error));